diff --git a/init.vim b/init.vim index c50f55c..a201e80 100644 --- a/init.vim +++ b/init.vim @@ -74,3 +74,4 @@ source ~/.config/nvim/html.vim source ~/.config/nvim/vim-lsp.vim source ~/.config/nvim/python.vim source ~/.config/nvim/rust.vim +source ~/.config/nvim/lilypond.vim diff --git a/lilypond.vim b/lilypond.vim new file mode 100644 index 0000000..2af6716 --- /dev/null +++ b/lilypond.vim @@ -0,0 +1,6 @@ +highlight Keyword cterm=bold ctermfg=yellow +highlight Tag ctermfg=blue +highlight Label ctermfg=lightyellow +highlight StorageClass cterm=bold ctermfg=lightgreen +highlight SpecialComment ctermfg=lightcyan +highlight PreCondit ctermfg=cyan diff --git a/plug.vim b/plug.vim index cf1ec2a..a16a225 100644 --- a/plug.vim +++ b/plug.vim @@ -49,4 +49,7 @@ Plug 'zchee/deoplete-jedi' Plug 'davidhalter/jedi-vim' Plug 'HiPhish/jinja.vim' +" Support for lilypond syntax-highlighting +Plug 'martineausimon/vim-lilypond-suite' + call plug#end()