Add pony support

This commit is contained in:
Adam Stankiewicz
2018-12-26 20:33:28 +01:00
parent f238378221
commit c161994e96
7 changed files with 862 additions and 1 deletions

View File

@@ -795,6 +795,13 @@ au BufNewFile,BufRead *.pgsql setf pgsql
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'pony') == -1
augroup filetypedetect
" pony, from pony.vim in jakwings/vim-pony
autocmd BufRead,BufNewFile *.pony setf pony
augroup end
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'powershell') == -1
augroup filetypedetect
" powershell, from ps1.vim in PProvost/vim-ps1