vimrc: use dark colours on Mac

This commit is contained in:
Mika Suomalainen 2012-09-16 15:54:52 +03:00
parent 20d0ec4a4a
commit e32bd88a69
1 changed files with 7 additions and 0 deletions

7
vimrc
View File

@ -92,3 +92,10 @@ set visualbell
if has('gui_running')
set background=light
endif
if has("unix")
let s:uname = system("uname")
if s:uname == "Darwin\n"
set background=light
endif
endif