mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
after living with it autoenabled for a little while, I've decided that
the tagbar is better off defaulting to on-demand.
This commit is contained in:
parent
19613d1aa8
commit
228b5d68e0
3 changed files with 3 additions and 3 deletions
|
@ -38,7 +38,7 @@
|
|||
|
||||
* **g:darkcloudpath**: Set to the location of the darkcloud-vimconfig folder. (__default__: __/etc/darkcloud-vimconfig__)
|
||||
* **g:autostartchecker**: 1 = Check syntax once an appropriate file is loaded | 0 = Check syntax only after syntax checking is toggled on (__default__: 1)
|
||||
* **g:autostarttagbar**: 1 = Have the tagbar load automatically when a compatible format is run | 0 = The tagbar will stay hidden until triggered on demand with its toggle
|
||||
* **g:autostarttagbar**: 1 = Have the tagbar load automatically when a compatible format is run | 0 = The tagbar will stay hidden until triggered on demand with its toggle (__default__: 0)
|
||||
* **g:powerlinefonts**: 1 = Render the statusline using characters available with powerline-patched fonts | 0 = Render the statusbar with less attractive but more compatible characters available in all fonts (__default__: 0)
|
||||
* **guifont**: Set to the name of the font you would like to use with gVim followed by the size, making sure to escape spaces and that a powerline-compatible font is selected if the above option is set to 1. (__default__: Droid\ Sans\ Mono\ 12)
|
||||
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
"TAGBAR: {{{
|
||||
"tagbar sidebar autostart default: 1
|
||||
if !exists("g:autostarttagbar")
|
||||
let g:autostarttagbar=1
|
||||
let g:autostarttagbar=0
|
||||
endif
|
||||
|
||||
if (g:autostarttagbar == 1)
|
||||
|
|
2
vimrc
2
vimrc
|
@ -32,7 +32,7 @@
|
|||
let g:autostartchecker=1
|
||||
|
||||
"Vim Starts With The Tagbar Open: (1:start open | 0:start closed)
|
||||
let g:autostarttagbar=1
|
||||
let g:autostarttagbar=0
|
||||
|
||||
"Powerline Font Support: (1:enabled | 0:disabled)
|
||||
let g:powerlinefonts=1
|
||||
|
|
Loading…
Reference in a new issue