mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-16 20:25:41 +08:00
12 lines
364 B
VimL
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
|