SILO
SILO

Reputation: 73

Font size NOT changing through .vimrc but can inside vim

I can change the font size with set guifont=FixedsysTTF Monospace:h13 inside Vim and works perfectly.

However when I put this inside ~/.vimrc it stays the same font size no matter what size I set it to, and it's really small.

Here is the screenshot of the problem:

Here is the screenshot of the problem

Upvotes: 2

Views: 827

Answers (1)

phd
phd

Reputation: 94418

I didn't catch a space in the font name. It must be escaped:

set guifont=FixedsysTTF\ Monospace:h13

Upvotes: 3

Related Questions