1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 22:40:04 +08:00

Merge pull request #423 from icearith/dev

add vim-scala plugins in scala lang layer for synctax highting and more
This commit is contained in:
Wang Shidong 2017-04-11 20:47:55 +08:00 committed by GitHub
commit cc45dfb211

View File

@ -0,0 +1,10 @@
""
" @section lang#scala, layer-lang-scala
" @parentsection layers
function! SpaceVim#layers#lang#scala#plugins() abort
let plugins = []
" scala
call add(plugins, ['derekwyatt/vim-scala', { 'on_ft' : 'scala'}])
return plugins
endfunction