Remove scrollbars from the gui version of VIM (guioptions-=rRlL). Add a bit extra margin to the left in each buffer (foldcolumn=1).
This commit is contained in:
parent
efbf62f6d6
commit
9d45f6a18c
3 changed files with 10 additions and 1 deletions
|
@ -289,7 +289,7 @@ elseif &background=='dark'
|
||||||
hi WarningMsg guifg=#f08060 guibg=NONE gui=NONE
|
hi WarningMsg guifg=#f08060 guibg=NONE gui=NONE
|
||||||
hi WildMenu guifg=#000000 guibg=#d0d090 gui=NONE
|
hi WildMenu guifg=#000000 guibg=#d0d090 gui=NONE
|
||||||
hi Folded guifg=#aaaaaa guibg=#333333 gui=NONE
|
hi Folded guifg=#aaaaaa guibg=#333333 gui=NONE
|
||||||
hi FoldColumn guifg=#e0e0e0 guibg=#333333 gui=NONE
|
hi FoldColumn guifg=#e0e0e0 guibg=#1f1f1f gui=NONE
|
||||||
hi DiffAdd guifg=NONE guibg=#000080 gui=NONE
|
hi DiffAdd guifg=NONE guibg=#000080 gui=NONE
|
||||||
hi DiffChange guifg=NONE guibg=#800080 gui=NONE
|
hi DiffChange guifg=NONE guibg=#800080 gui=NONE
|
||||||
hi DiffDelete guifg=#6080f0 guibg=#202020 gui=NONE
|
hi DiffDelete guifg=#6080f0 guibg=#202020 gui=NONE
|
||||||
|
|
|
@ -121,6 +121,9 @@ set novisualbell
|
||||||
set t_vb=
|
set t_vb=
|
||||||
set tm=500
|
set tm=500
|
||||||
|
|
||||||
|
" Add a bit extra margin to the left
|
||||||
|
set foldcolumn=1
|
||||||
|
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" => Colors and Fonts
|
" => Colors and Fonts
|
||||||
|
|
|
@ -33,6 +33,12 @@ if has("gui_macvim")
|
||||||
au GUIEnter * set fullscreen
|
au GUIEnter * set fullscreen
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
" Disable scrollbars (real hackers don't use scrollbars for navigation!)
|
||||||
|
set guioptions-=r
|
||||||
|
set guioptions-=R
|
||||||
|
set guioptions-=l
|
||||||
|
set guioptions-=L
|
||||||
|
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" => Fast editing and reloading of vimrc configs
|
" => Fast editing and reloading of vimrc configs
|
||||||
|
|
Loading…
Reference in a new issue