Enable solarized colorscheme

This commit is contained in:
lhark 2015-12-25 21:56:56 +01:00
parent 0375e000e1
commit 27ed1bc9dc

10
vimrc
View file

@ -216,20 +216,20 @@ if has("gui_running")
endif
if has("win32") || has("win64")
try
colorscheme desert
colorscheme solarized
set guifont=PT_Mono:h11
catch
endtry
elseif has("unix")
try
colorscheme mirodark
colorscheme solarized
set guifont=PT\ Mono\ 11
catch
endtry
elseif has("mac")
try
set antialias
colorscheme molokai
colorscheme solarized
set guifont=Monaco:h11
catch
endtry
@ -237,8 +237,8 @@ if has("gui_running")
else
if has("unix") || has("mac")
try
set t_Co=256
colorscheme desert
set t_Co=16
colorscheme solarized
catch
endtry
endif