diff --git a/autoload/SpaceVim/layers/shell.vim b/autoload/SpaceVim/layers/shell.vim new file mode 100644 index 000000000..2cdc0be69 --- /dev/null +++ b/autoload/SpaceVim/layers/shell.vim @@ -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