Sublime Forum

I want to change the font, how to do it?

#1

installed the SystemVerilog package. I want to change the font, how to do it?

0 Likes

#2

Click “Preferences” then “Settings”.

This will open a secondary window that shows default values on the left, and your personal settings on the right.

The setting you are looking for is font_face and possibly font_size. Simply put the setting on your personal setting size with whatever you choose. For example, mine reads:

	"font_face": "Roboto Mono",
	"font_options":
	[
		"directwrite"
	],
	"font_size": 13,

in the section where I have font settings written down. I don’t know if directwrite is necessary anymore. That might be a holdover from a prior version of Sublime and is specific to Windows so wouldn’t make much sense if you’re on Mac or Linux.

0 Likes