diff options
Diffstat (limited to 'ftdetect/polyglot.vim')
-rw-r--r-- | ftdetect/polyglot.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 11b4e060..5ff50332 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -504,6 +504,15 @@ autocmd BufNewFile,BufRead *.hx setf haxe augroup end endif +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'hive') == -1 + augroup filetypedetect + " hive, from hive.vim in zebradil/hive.vim +autocmd BufNewFile,BufRead *.hql set filetype=hive +autocmd BufNewFile,BufRead *.ql set filetype=hive +autocmd BufNewFile,BufRead *.q set filetype=hive + augroup end +endif + if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'i3') == -1 augroup filetypedetect " i3, from i3config.vim in mboughaba/i3config.vim |