ubuntu下sublime中修改字体

版权声明:本文为博主原创文章,可以随便转载 https://blog.csdn.net/appleyuchi/article/details/81711106

环境:

Ubuntu Linux 16.04

sublime 3

选择

Preferences=>Settings=>修改Preferences.sublime-settings--User

用下面的替换,就可以改为"汉仪全唐诗体繁",前提是ubuntu中已经安装了该字体.

{
	"color_scheme": "Packages/Color Scheme - Default/Cobalt.tmTheme",
	"draw_white_space": "all",
	"expand_tabs_on_save": true,
	"font_face": "HYQuanTangShiF",
	"font_options":
	[
		"no_bold",
		"no_italic",
		"no_antialias",
		"gray_antialias"
	],
	"font_size": 16,
	"ignored_packages":
	[
		"Vintage"
	],
	"index_files": false,
	"save_on_focus_lost": true,
	"tab_size": 4,
	"translate_tabs_to_spaces": true,
	"update_check": false
}

猜你喜欢

转载自blog.csdn.net/appleyuchi/article/details/81711106