Sublime Text 常用配置

D:\Program Files\SublimeText\Data\Packages\User\Preferences.sublime-settings

 1 {
 2     "bold_folder_labels": true,
 3     // "color_scheme": "Packages/Theme - Piatto/Piatto Light.tmTheme",
 4     // "font_face": "Source Code Variable",
 5     "font_size": 12,
 6     "highlight_line": true,
 7     "highlight_modified_tabs": true,
 8     "ignored_packages":
 9     [
10         "Vintage"
11     ],
12     "keymaps":
13     {
14         "show_pretty_keys": true
15     },
16     "line_padding_bottom": 0,
17     "line_padding_top": 0,
18     "overlay_scroll_bars": "enabled",
19     // "theme": "Piatto Light.sublime-theme",
20     "word_wrap": true,
21     "caret_style": "phase",
22     "draw_white_space": "all",
23     "ensure_newline_at_eof_on_save": true,
24     "open_files_in_new_window": false,
25     "rulers":
26     [
27         80,
28         100
29     ],
30     "save_on_focus_lost": true,//失去聚焦时保存
31     "show_encoding": true,//显示编码
32     "show_full_path": true,//显示完整路径
33     "spell_check": false,//拼写检查
34     "tab_size": 4,
35     "translate_tabs_to_spaces": true,//将制表符转换为空格
36     "trim_trailing_white_space_on_save": true, //在保存上减少尾随空格。
37     "word_wrap": true
38 }

 

posted @ 2024-03-28 09:52  petercao  阅读(38)  评论(0编辑  收藏  举报