1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-15 19:45:46 +08:00

Enable check install by default

Fix #57
This commit is contained in:
wsdjeg 2017-01-07 01:18:10 +08:00
parent f77245f7ca
commit a960a7aa32
2 changed files with 7 additions and 7 deletions

View File

@ -78,12 +78,12 @@ let g:spacevim_filemanager = 'vimfiler'
" default it is dein. " default it is dein.
let g:spacevim_plugin_manager = 'dein' " neobundle or dein or vim-plug let g:spacevim_plugin_manager = 'dein' " neobundle or dein or vim-plug
"" ""
" Enable/Disable checkinstall on SpaceVim startup. by default is 0. " Enable/Disable checkinstall on SpaceVim startup. by default is 1.
" "
" To enable it: > " To disable it: >
" let g:spacevim_checkinstall = 1 " let g:spacevim_checkinstall = 0
" < " <
let g:spacevim_checkinstall = 0 let g:spacevim_checkinstall = 1
let g:spacevim_hiddenfileinfo = 1 let g:spacevim_hiddenfileinfo = 1
let g:spacevim_plugin_groups_exclude = [] let g:spacevim_plugin_groups_exclude = []
"" ""

View File

@ -75,11 +75,11 @@ The default plugin manager of SpaceVim, dein, neobundle or vim-plug. by
default it is dein. default it is dein.
*g:spacevim_checkinstall* *g:spacevim_checkinstall*
Enable/Disable checkinstall on SpaceVim startup. by default is 0. Enable/Disable checkinstall on SpaceVim startup. by default is 1.
To enable it: To disable it:
> >
let g:spacevim_checkinstall = 1 let g:spacevim_checkinstall = 0
< <
*g:spacevim_plugin_groups* *g:spacevim_plugin_groups*