Sublime个性用户设置

一、基础用户设置:

工具栏 Preferences – Settings-User 进入用户设置

二、设置代码:

{
	"bold_folder_labels": true,// 加粗字号
	"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",// 颜色主题
	"debug": true,// 开启debug功能
	"font_size": 13,// 设置默认字号
	"highlight_line": true,// 编辑的当前行高亮
	"highlight_modified_tabs": true,
	"ignored_packages":
	[
		"Vintage"
	],
	"previewonclick": false,
	"save_on_focus_lost": true,// 窗口失焦立即保存文件
	"scroll_past_end": true,
	"show_full_path": true,
	"spell_check": false,// 关闭检测拼读
	"tab_size": 2,// 设置默认tab占几个空格位
	"theme": "Default.sublime-theme",// 设置主题
	"translate_tabs_to_spaces": true,// 把代码tab对齐转换为空格对齐
	"trim_trailing_white_space_on_save": true,// 自动移除行尾多余的空格
	"word_wrap": true,// 设置自动换行
	"fade_fold_buttons": false,// 显示行号右侧的代码闭合展开三角号
	"draw_minimap_border": true,// 用于右侧代码预览时给所在区域加上边框
	"ensure_newline_at_eof_on_save": true,// 文件末尾自动保留一个空行
}

猜你喜欢

转载自blog.csdn.net/Char_n/article/details/79771657
今日推荐