From c161994e9607399a7b365ab274592bfc4f100306 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Wed, 26 Dec 2018 20:33:28 +0100 Subject: Add pony support --- ftdetect/polyglot.vim | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ftdetect/polyglot.vim') diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 62aaf3ab..888f78eb 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -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 -- cgit v1.2.3