mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 13:10:04 +08:00
Let tagbar use g:spacevim_sidebar_width
This commit is contained in:
parent
55dff51ffa
commit
303fdad655
@ -96,7 +96,7 @@ let g:spacevim_guifont = ''
|
||||
let g:spacevim_enable_ycm = 0
|
||||
""
|
||||
" Set the width of value of spacevim sidebar width, and this value will be
|
||||
" used by tagbar, vimfiler, mundo etc. default it is 30.
|
||||
" used by tagbar, vimfiler. default it is 30.
|
||||
let g:spacevim_sidebar_width = 30
|
||||
let g:spacevim_enable_neocomplcache = 0
|
||||
""
|
||||
|
@ -1,4 +1,4 @@
|
||||
let g:tagbar_width=30
|
||||
let g:tagbar_width = g:spacevim_sidebar_width
|
||||
let g:tagbar_left = 1
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@ endif
|
||||
|
||||
call vimfiler#custom#profile('default', 'context', {
|
||||
\ 'explorer' : 1,
|
||||
\ 'winwidth' : get(g:, 'spacevim_sidebar_width', 30) ,
|
||||
\ 'winwidth' : g:spacevim_sidebar_width,
|
||||
\ 'winminwidth' : 30,
|
||||
\ 'toggle' : 1,
|
||||
\ 'columns' : 'type',
|
||||
|
@ -126,7 +126,7 @@ Disable/Enable YouCompleteMe, by default it is disabled. To enable it:
|
||||
|
||||
*g:spacevim_sidebar_width*
|
||||
Set the width of value of spacevim sidebar width, and this value will be used
|
||||
by tagbar, vimfiler, mundo etc. default it is 30.
|
||||
by tagbar, vimfiler. default it is 30.
|
||||
|
||||
*g:spacevim_enable_cursorline*
|
||||
Enable cursorline
|
||||
|
Loading…
Reference in New Issue
Block a user