1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-23 17:49:57 +08:00

Revent check install

This commit is contained in:
wsdjeg 2017-03-29 22:35:02 +08:00
parent 5992306db0
commit 116fb53864
3 changed files with 4 additions and 4 deletions

View File

@ -153,7 +153,7 @@ Try these Neovim hangouts for any questions, problems or comments.
curl -sLf https://spacevim.org/install.sh | bash curl -sLf https://spacevim.org/install.sh | bash
``` ```
**After SpaceVim is installed, launch `vim` and run `:call dein#install()` inside vim to install all the plugins.** **After SpaceVim is installed, launch `vim` and SpaceVim will automatically install plugins**
Once plugins start installing, at the bottom of the vim window, you will see Once plugins start installing, at the bottom of the vim window, you will see
`[dein] Install started: (YYYY/MM/DD HH:MM:SS)` `[dein] Install started: (YYYY/MM/DD HH:MM:SS)`

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 0. " Enable/Disable checkinstall on SpaceVim startup. Default is 1.
" > " >
" let g:spacevim_checkinstall = 1 " let g:spacevim_checkinstall = 1
" < " <
let g:spacevim_checkinstall = 0 let g:spacevim_checkinstall = 1
"" ""
" Enable/Disable debug mode for SpaceVim. Default is 0. " Enable/Disable debug mode for SpaceVim. Default is 0.
" > " >

View File

@ -205,7 +205,7 @@ 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 0. Enable/Disable checkinstall on SpaceVim startup. Default is 1.
> >
let g:spacevim_checkinstall = 1 let g:spacevim_checkinstall = 1
< <