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") if has("win32") || has("win64")
try try
colorscheme solarized colorscheme solarized
set guifont=PT_Mono:h11 set guifont=PT_Mono:h12
catch catch
endtry endtry
elseif has("unix") elseif has("unix")
try try
colorscheme solarized colorscheme solarized
set guifont=PT\ Mono\ 11 set guifont=Liberation\ Mono\ 12
catch catch
endtry endtry
elseif has("mac") elseif has("mac")
try try
set antialias set antialias
colorscheme solarized colorscheme solarized
set guifont=Monaco:h11 set guifont=Monaco:h12
catch catch
endtry endtry
endif endif