Add hive syntax, closes #396

This commit is contained in:
Adam Stankiewicz
2019-06-08 12:50:29 +02:00
parent 957228cc25
commit 5023da62ec
5 changed files with 157 additions and 1 deletions

View File

@@ -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