Remove rego, fixes #415

This commit is contained in:
Adam Stankiewicz
2019-07-01 16:26:25 +02:00
parent 140430ffb7
commit 3ddca5da46
4 changed files with 1 additions and 75 deletions

View File

@@ -1107,17 +1107,6 @@ au BufNewFile,BufRead .merlin set ft=merlin
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'rego') == -1
augroup filetypedetect
" rego, from rego.vim in tsandall/vim-rego
autocmd BufRead,BufNewFile *.rego set filetype=rego
" Use # as a comment prefix
setlocal comments=b:#,fb:-
setlocal commentstring=#\ %s
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ruby') == -1
augroup filetypedetect
" ruby, from ruby.vim in vim-ruby/vim-ruby