如何让gVim使用微软雅黑字体

先去下个取消等宽字体限制的gvim版本,或者自己下源代码,注释掉某个条件判断就能列出所有字体了(具体请google,很多)

然后在vimrc里添加如下配置


set encoding=utf-8
set guifontset=
set guifont=Consolas:h12
set guifontwide=Microsoft\ Yahei:h12

这样就能让英文字体使用Consolas,中文使用雅黑了。

如何让gVim使用微软雅黑字体_第1张图片

:help gfw有如下描述
All GUI versions but GTK+ 2:


'guifontwide' is only used when 'encoding' is set to "utf-8" and
'guifontset' is empty or invalid.
When 'guifont' is set and a valid font is found in it and
'guifontwide' is empty Vim will attempt to find a matching
double-width font and set 'guifontwide' to it.

你可能感兴趣的:(Microsoft,Google,vim,微软,encoding,gtk)