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
    
    }
  • 相关阅读:
    由于挂载的nfs存储目录掉下线,导致创建VM时,无法创建
    使用RVM更新Ruby 版本
    安装logstash+kibana+elasticsearch+redis搭建集中式日志分析平台
    Topic modeling【经典模型】
    [第1集] 课程目标,数据类型,运算,变量
    Juint test Case 的2种使用方式
    getJSON方式请求服务器
    Web项目改名的带来的404not found问题
    JavaWeb EL表达式, JSTL标签及过滤器综合学习
    HashMap的几种遍历方式(转载)
  • 原文地址:https://www.cnblogs.com/llhl/p/9648689.html
Copyright © 2011-2022 走看看