{
// 设置字体12
"font_size": 12,
// 设置tab的大小为2
"tab_size": 2,
// 使用空格代替tab
"translate_tabs_to_spaces": true,
// 添加行宽标尺
"rulers": [80, 100],
// 显示空白字符
"draw_white_space": "all",
// 保存时自动去除行末空白
"trim_trailing_white_space_on_save": true,
// 保存时自动增加文件末尾换行
"ensure_newline_at_eof_on_save": true,
// 使光标闪动更加柔和
"caret_style": "phase",
// 高亮当前行
"highlight_line": true,
// 高亮有修改的标签
"highlight_modified_tabs": true,
}
// 打开关闭侧边栏
{"keys": ["ctrl+k"], "command": "toggle_side_bar"},
// 快速跳至行尾
{"keys":["alt+\\"], "command":"move_to", "args":{"to":"eol"}},
// 快速调制行首
{"keys":["alt+/"], "command":"move_to", "args":{"to":"bol"}