1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-01 00:50:31 +08:00
2017-02-17 00:56:55 -05:00

16 lines
460 B
VimL

""
" @section shell, layer-shell
" @parentsection layers
" SpaceVim uses deol.nvim for shell support in neovim and uses vimshell for
" vim. For more info, read |deol| and |vimshell|.
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