1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:30:07 +08:00

Add vimproc into debug layer (#2818)

This commit is contained in:
Wang Shidong 2019-05-11 17:51:56 +08:00 committed by GitHub
parent 256e9b9c3d
commit ee8b6df3aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,9 @@
function! SpaceVim#layers#debug#plugins() abort
let plugins = []
call add(plugins,['idanarye/vim-vebugger', {'merged' : 0}])
if g:spacevim_filemanager !=# 'vimfiler'
call add(plugins, ['Shougo/vimproc.vim', {'build' : [(executable('gmake') ? 'gmake' : 'make')]}])
endif
return plugins
endfunction