1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-16 20:25:41 +08:00
2017-01-14 14:36:36 +08:00

12 lines
364 B
VimL

function! SpaceVim#layers#checkers#plugins() abort
let plugins = []
if g:spacevim_enable_neomake
call add(plugins, ['neomake/neomake', {'merged' : 0, 'loadconf' : 1 , 'loadconf_before' : 1}])
else
call add(plugins, ['wsdjeg/syntastic', {'on_event': 'WinEnter', 'loadconf' : 1, 'merged' : 0}])
endif
return plugins
endfunction