Xming font is small

来源:互联网 发布:sql语句按时间排序 编辑:程序博客网 时间:2024/05/16 01:18

when using putty ssh to a linux machine and redirect X11 display to windows host.

using gvim at the ssh, there is a gvim displayed in windows host.

the font is too small.

 

take a reference at:

http://vim.wikia.com/wiki/Change_font

 

adding the flollowing 3 lines to .vimrc on linux

if has('gui_running')

    set guifont=Monospace\ 12

endif

 

then it is OK now.