Add dhall, closes #426

This commit is contained in:
Adam Stankiewicz
2019-09-04 16:06:18 +02:00
parent 933e42ea1f
commit 832dfece76
6 changed files with 134 additions and 1 deletions

View File

@@ -289,6 +289,15 @@ autocmd BufRead,BufNewFile *.dart set filetype=dart
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'dhall') == -1
augroup filetypedetect
" dhall, from dhall.vim in vmchale/dhall-vim
augroup dhall
autocmd BufNewFile,BufRead *.dhall set filetype=dhall
augroup END
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'dlang') == -1
augroup filetypedetect
" dlang, from d.vim in JesseKPhillips/d.vim