Set different fonts for Mac/Win32 GUI.

This commit is contained in:
Ryan Cavicchioni 2010-05-11 16:47:15 -05:00
parent 356fe8b618
commit 109fe6a8b9

6
.vimrc
View File

@ -9,11 +9,15 @@ else
endif
if has("gui_running")
colorscheme tesla
syntax on
if has("win32")
set guifont=Consolas:h10:b
elseif has("mac")
"set guifont=Menlo\ Bold
"set guifont=Bitstream\ Vera\ Sans\ Mono\ Bold
set guifont=DejaVu\ Sans\ Mono\ Bold
endif
set guioptions=egmrt
syntax on
endif
set nowrap " Disable word wrap.
set tabstop=4 " Set tab to 4 characters.