美文网首页
我的Sublime Text 配置

我的Sublime Text 配置

作者: se7ent1ng | 来源:发表于2017-12-10 00:55 被阅读0次
    // 高亮光标所处行
    "highlight_line": true
    
    // 焦点丢失后自动保存
    "save_on_focus_lost": true
    
    // 显示当前文件的编码
    "show_encoding": true
    
    // 保存的时候把无用的空格去掉
    "trim_trailing_white_space_on_save": true
    
    // Tab转换空格
    "tab_size": 4,
    "translate_tabs_to_spaces": true
    
    我的配置如下:
    {
        "draw_minimap_border": true,
        "ensure_newline_at_eof_on_save": true,
        "font_size": 13,
        "highlight_line": true,
        "hot_exit": false,
        "ignored_packages":
        [
            "Vintage"
        ],
        "remember_open_files": false,
        "rulers":
        [
            80
        ],
        "show_encoding": true,
        "tab_size": 4,
        "translate_tabs_to_spaces": true,
        "trim_trailing_white_space_on_save": true,
        "update_check": false,
        "word_wrap": false
    }
    
    

    相关文章

      网友评论

          本文标题:我的Sublime Text 配置

          本文链接:https://www.haomeiwen.com/subject/qflmixtx.html