summaryrefslogtreecommitdiffstats
path: root/ftdetect/polyglot.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ftdetect/polyglot.vim')
-rw-r--r--ftdetect/polyglot.vim10
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