2022-11-17
~/.config/sublime-text/Package/User/Preferences.sublime-setting
{
"update_check":false,
"ignored_packages":
[
"Vintage",
],
//"font_face":"DejaVu Sans Mono Book",
"font_face":"Noto Sans Mono CJK SC",
"font_size":17,
// 状态栏显示文件的使用编码
"show_encoding":true,
// 状态栏显示换行符类型
"show_line_endings": true,
"color_scheme": "ayu-dark.sublime-color-scheme",
//显示空白字符
"draw_white_space": "tabs",
//设置tab大小为4
"tab_size":4,
//使用空格代替tab
"translate_tabs_to_spaces": true,
// 是否自动计算缩进
"auto_indent": true,
// 高亮当前编辑行
"highlight_line": true,
// 设置行距,由行上边距和行下边距设置
// 建议上下设置一样的值会比较对称
"line_padding_top": 1,
"line_padding_bottom": 1,
// 是否显示空白符(即空格和制表符)
// 其它常用有效值 "all", "tabs", "spaces", "none"
// 推荐使用有效值 "selection", "trailing"
// 中括号里可填入一个或多个值
// - "selection": 选中状态的文本显示
// - "trailing": 行尾的空白显示
"draw_white_space": ["selection", "trailing"],
// 是否显示缩进对齐参考线
"draw_indent_guides": true,
// 侧边栏文件夹加粗显示
"bold_folder_labels": true,
}
标签:selection,Preferences,Text,4126,line,font,true,sublime
From: https://www.cnblogs.com/namevt/p/16901386.html