zoukankan      html  css  js  c++  java
  • Sublime Text3配置备份

    {
        "channels":
        [
            "https://packagecontrol.io/channel_v3.json",
            "https://web.archive.org/web/20150905194312/https://packagecontrol.io/channel_v3.json"
        ],
        "color_scheme": "Packages/Theme - Brogrammer/brogrammer.tmTheme",
        "font_size": 14,
        "ignored_packages":
        [
        // Vim模式
            "Vintage"
        ],
        // 是否显示行号边栏
        "gutter": true,
        // 按回车时,自动与制表位对齐
        "auto_indent": true,
        //行号
        "line_numbers": true,
        // 行号边栏和文字的间距
        "margin": 4,
        // 显示当前文件的编码
        "show_encoding": true,
        // 高亮编辑中的那一行
        "highlight_line": true,
        // 焦点丢失后自动保存
        "save_on_focus_lost": true,
        // 保存的时候把无用的空格去掉
        "trim_trailing_white_space_on_save": true,
        // Tab转换
        "tab_size": 2,
        "translate_tabs_to_spaces": true,
        // 自动换行
        "word_wrap": false,
        // 宽度指导线
        "rulers": [80],
        // 拼写检查
        "spell_check": false,
        // 要不要滚过头
        "scroll_past_end": true,
        // 显示Tab、空格
        "draw_white_space": "all",
        // 加粗文件夹名称
        "bold_folder_labels": true,
        // 显示全路径
        "show_full_path": true,
        // 设置光标闪动方式
        "caret_style": "smooth",
        // 是否突出显示圆括号,match_brackets为true生效
        "match_brackets_square": false,
        // 是否突出显示大括号,match_brackets为true生效
        "match_brackets_braces": false,
        // 是否突出显示尖括号,match_brackets为true生效
        "match_brackets_angle": false,
        // html和xml下突出显示光标所在标签的两端,影响HTMLXMLCSS"match_tags": true,
        // 全文突出显示和当前选中字符相同的字符
        "match_selection": true,
        // "font_options": ["no_bold", "no_italic", "no_antialias", "gray_antialias",],
        // "font_face": "SourceSansPro",
        // "font_face": "Yahei",
        "theme": "Brogrammer.sublime-theme",
        "update_check": false
    
    }
  • 相关阅读:
    Java多线程缓存器简单实现
    synchronized Lock用法
    【项目】01CMS的CRUD
    RabbitMQ模式,RabbitMQ和springboot整合,RabbitMQ全链路消息不丢失解决
    FreeMarker在项目中实际运用随感
    自定义异常springMVC&springCloud
    单例设计模式懒汉式和恶汉式
    浅析重不重写hashcode和equals对于HashSet添加元素的影响
    JAVA异常处理原理浅析
    Static(静态)关键字入门
  • 原文地址:https://www.cnblogs.com/llhl/p/9648689.html
Copyright © 2011-2022 走看看