1
0
mirror of https://github.com/amix/vimrc synced 2025-06-23 15:04:59 +08:00

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:
amix
2012-08-24 18:00:53 -04:00
parent efbf62f6d6
commit 9d45f6a18c
3 changed files with 10 additions and 1 deletions

View File

@ -121,6 +121,9 @@ set novisualbell
set t_vb=
set tm=500
" Add a bit extra margin to the left
set foldcolumn=1
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Colors and Fonts

View File

@ -33,6 +33,12 @@ if has("gui_macvim")
au GUIEnter * set fullscreen
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