4,460
edits
→gvim on Windows 10: Installing vim-plug on Windows 10 |
→gvim on Windows 10: Setting GUI font in .vimrc |
||
Line 243: | Line 243: | ||
= gvim on Windows 10 = | = gvim on Windows 10 = | ||
== Setting GUI font in .vimrc == | |||
<source lang="vim"> | |||
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 | |||
</source> | |||
== Installing vim-plug == | == Installing vim-plug == |