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
    
    }
  • 相关阅读:
    表单数据源控制器笔记
    方法汇总1
    Persistence.beans
    数据库外键理解
    SQL语句缺少
    树型结构需要绑定的字段
    模型绑定替换
    乱码
    表单的验证:客户端验证和服务器端验证
    表单
  • 原文地址:https://www.cnblogs.com/llhl/p/9648689.html
Copyright © 2011-2022 走看看