Sublime 格式记录

基本设置

// Settings in here override those in "Default/Preferences.sublime-settings",
// and are overridden in turn by syntax-specific settings.
{
    "font_size": 14,
    "font_face": "FiraCode NF",
    "font_options": ["no_round"],
    "margin": 0,
    "fold_buttons": false,
    "highlight_line": true,
    "update_check":false,
    "theme": "Adaptive.sublime-theme",
    // "color_scheme": "Mariana.sublime-color-scheme",

    "save_on_focus_lost": true,                         // 开启自动保存
    "expand_tabs_on_save":true,
    "translate_tabs_to_spaces": true,                   // 将 tab 转换为 空格
    "ensure_newline_at_eof_on_save": true,              // 保存时自动增加文件末尾换行
    "draw_white_space": "all",                          // 显示空白字符
    "trim_trailing_white_space_on_save": true,          // 保存时自动去除行末空白
    "rulers": [80, 100],                                // 添加行宽标尺
    "default_line_ending": "unix",
}