1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-13 15:29:10 +08:00

Add shell layer

This commit is contained in:
wsdjeg 2017-01-29 20:37:30 +08:00
parent c0550ee792
commit 44dd0dd8d6

View File

@ -0,0 +1,9 @@
function! SpaceVim#layers#shell#plugins() abort
let plugins = []
if has('nvim')
call add(plugins,['Shougo/deol.nvim'])
else
call add(plugins,['Shougo/vimshell.vim', { 'on_cmd':['VimShell']}])
endif
return plugins
endfunction