1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-14 15:19:12 +08:00
This commit is contained in:
wsdjeg 2017-03-27 21:19:24 +08:00
parent 360cc4f25d
commit 899b0cdc82
3 changed files with 10 additions and 6 deletions

View File

@ -145,7 +145,11 @@ Try these Neovim hangouts for any questions, problems or comments.
```bash ```bash
curl -sLf https://spacevim.org/install.sh | bash curl -sLf https://spacevim.org/install.sh | bash
``` ```
with this command, SpaceVim will be installed. all the plugins will be install automatically when first time run vim/nvim. Please wait for the end of the installation process. with this command, SpaceVim will be installed. you need run `:call dein#install()`
in vim to install all the plugins, you will see
`[dein] Install started: (2017/03/27 21:14:07)`
and please wait for
`[dein] Done: (2017/03/27 21:17:23) `.
SpaceVim required Vim7.4 above or neovim, here is the installation of neovim/vim with python support: SpaceVim required Vim7.4 above or neovim, here is the installation of neovim/vim with python support:

View File

@ -180,11 +180,11 @@ let g:spacevim_filemanager = 'vimfiler'
" Options are dein, neobundle, or vim-plug. " Options are dein, neobundle, or vim-plug.
let g:spacevim_plugin_manager = 'dein' let g:spacevim_plugin_manager = 'dein'
"" ""
" Enable/Disable checkinstall on SpaceVim startup. Default is 1. " Enable/Disable checkinstall on SpaceVim startup. Default is 0.
" > " >
" let g:spacevim_checkinstall = 0 " let g:spacevim_checkinstall = 1
" < " <
let g:spacevim_checkinstall = 1 let g:spacevim_checkinstall = 0
"" ""
" Enable/Disable debug mode for SpaceVim. Default is 0. " Enable/Disable debug mode for SpaceVim. Default is 0.
" > " >

View File

@ -205,9 +205,9 @@ The default plugin manager of SpaceVim. Default is 'dein'. Options are dein,
neobundle, or vim-plug. neobundle, or vim-plug.
*g:spacevim_checkinstall* *g:spacevim_checkinstall*
Enable/Disable checkinstall on SpaceVim startup. Default is 1. Enable/Disable checkinstall on SpaceVim startup. Default is 0.
> >
let g:spacevim_checkinstall = 0 let g:spacevim_checkinstall = 1
< <
*g:spacevim_enable_debug* *g:spacevim_enable_debug*