Set readable font for gvim

This commit is contained in:
lhark 2016-10-10 02:41:11 -04:00
parent 602083b7b5
commit b6e553c661

6
vimrc
View file

@ -223,20 +223,20 @@ if has("gui_running")
if has("win32") || has("win64")
try
colorscheme solarized
set guifont=PT_Mono:h11
set guifont=PT_Mono:h12
catch
endtry
elseif has("unix")
try
colorscheme solarized
set guifont=PT\ Mono\ 11
set guifont=Liberation\ Mono\ 12
catch
endtry
elseif has("mac")
try
set antialias
colorscheme solarized
set guifont=Monaco:h11
set guifont=Monaco:h12
catch
endtry
endif