Use light BG in GUI Vim and dark in console

Console uses Solarized (Dark) colorscheme, so having a light
background doesn't work well in the console. On the other hand,
the dark background is hard to read in MacVim (for me).
vimbundler
nirenjan 2013-02-06 10:00:43 -08:00
parent 1b8e435dc4
commit b55a9b43dc
1 changed files with 5 additions and 1 deletions

6
vimrc
View File

@ -76,8 +76,12 @@ set wcm=<C-Z>
map <F4> :emenu <C-Z>
" Colorscheme
set background=dark
colorscheme solarized
if has("gui_running")
set background=light
else
set background=dark
end
" Mouse support
if has("mouse")