diff options
Diffstat (limited to 'ftdetect/polyglot.vim')
-rw-r--r-- | ftdetect/polyglot.vim | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 35b7485c..54d71378 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -1221,6 +1221,17 @@ 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 |