Add helm syntax, closes #422

This commit is contained in:
Adam Stankiewicz
2019-09-04 15:45:55 +02:00
parent 664aa988f6
commit 21849c2e18
4 changed files with 105 additions and 1 deletions

View File

@@ -560,6 +560,13 @@ autocmd BufNewFile,BufRead Appfile set filetype=hcl
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'helm') == -1
augroup filetypedetect
" helm, from helm.vim in towolf/vim-helm
autocmd BufRead,BufNewFile */templates/*.yaml,*/templates/*.tpl set ft=helm
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'hive') == -1
augroup filetypedetect
" hive, from hive.vim in zebradil/hive.vim