Add elm support, closes #81

This commit is contained in:
Adam Stankiewicz
2015-12-06 11:53:26 +01:00
parent ba7a783c7f
commit 08ea94e011
7 changed files with 314 additions and 0 deletions

View File

@@ -58,6 +58,10 @@ function! s:DetectElixir()
endfunction
autocmd BufNewFile,BufRead * call s:DetectElixir()
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'elm') == -1
au BufNewFile,BufRead *.elm set filetype=elm
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'emberscript') == -1
autocmd BufNewFile,BufRead *.em set filetype=ember-script