vimrc: Use light background with gvim.

This commit is contained in:
Mika Suomalainen 2012-03-23 18:13:17 +02:00
parent 6981d88959
commit 07a621c9df
1 changed files with 5 additions and 0 deletions

5
vimrc
View File

@ -87,3 +87,8 @@ set title
" Flash, do not beep!
set visualbell
" End of copied from http://items.sjbach.com/319/configuring-vim-right
" gvim has light background
if has('gui_running')
set background=light
endif