diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2019-03-05 09:34:59 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2019-03-05 09:34:59 +0100 |
commit | 86721731c740d0ea07e6b90e601a80770c3d9f36 (patch) | |
tree | 6f8b5ea6e94d818ab1580b003ac219dade1664ff /ftdetect | |
parent | 6f7257ade246f62993a71066f394a3652f9493b6 (diff) | |
download | vim-polyglot-86721731c740d0ea07e6b90e601a80770c3d9f36.tar.gz vim-polyglot-86721731c740d0ea07e6b90e601a80770c3d9f36.zip |
Add lilypond support, closes #278
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 2113780b..3ab93802 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -667,6 +667,16 @@ au BufNewFile,BufRead */templates/**.liquid,*/layout/**.liquid,*/snippets/**.liq augroup end endif +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'lilypond') == -1 + augroup filetypedetect + " lilypond, from lilypond.vim in anowlcalledjosh/vim-lilypond +" +" Installed As: vim/ftdetect/lilypond.vim +" +au! BufNewFile,BufRead *.ly,*.ily set ft=lilypond + augroup end +endif + if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'livescript') == -1 augroup filetypedetect " livescript, from ls.vim in gkz/vim-ls |