小编典典

在 .vimrc 文件中设置 gvim 字体

all

我在 Windows 7 上使用 gVim 7.2。我可以从菜单中将 gui 字体设置为 Consolas
10(字体大小)。我正在尝试将其设置在.vimrc如下文件中:

set guifont=Consolas\ 10

但它不起作用。有谁知道如何设置这个?


阅读 210

收藏
2022-07-27

共1个答案

小编典典

我使用以下(在 Windows 上使用 Consolas 尺寸 11,在 Mac OS X 上使用 Menlo Regular 尺寸
14,在其他任何地方使用 Inconsolata 尺寸 12):

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

编辑:当您使用它时,您可以查看 Coding Horror 的Programming Fonts
博客文章

编辑注册:添加了 MacVim。

2022-07-27