gVim printing in Fixedsys font - hpaluch/hpaluch.github.io GitHub Wiki

Windows GUI vim (gVim) by defaults prints using Courier New font which is a bit hard to read.

To switch to Fixedsys font do this:

And then print something from gVim (for example to Microsoft PDF of BullZip PDF and see the difference :-)

To make your changes persistent, just create file %USERPROFILE%\_gvimrc with content:

" use FixedsysTTF font for printing instead of Courier_New
:set pfn=FixedsysTTF:h10 

-hp