WindowsでもLinuxでも通用するGVimのフォント設定方法
参考:http://stackoverflow.com/questions/3316244/set-gvim-font-in-vimrc-file
以下のように分岐させればどちらの環境でもOK。
if has("gui_running")
if has("gui_gtk2")
set guifont=Inconsolata\ 12
elseif has("gui_macvim")
set guifont=Menlo\ Regular:h14
elseif has("gui_win32")
set guifont=Consolas:h11:cANSI
endif
endif