zoukankan      html  css  js  c++  java
  • Tweak Sublime Text in MacOS

    显示效果

    display


    配置:

    command + , 开始配置

    {
        "additional_path_items":
        [
            "/path/to/file" // append of UNIX env variable PATH
        ],
        "auto_complete": true,
        "color_scheme": "Packages/Color Scheme - Default/Monokai.sublime-color-scheme",
        "default_line_ending": "unix",
        "dictionary": "Packages/Language - English/en_GB.dic",
        "draw_minimap_border": true,
        "expand_tabs_on_save": true,
        "fold_buttons": true,
        "font_face": "courier new bold",
        "font_size": 19,
        "bold_folder_labels": true,
        "ignored_packages":
        [
            // "Vintage",
        ],
        "line_padding_bottom": 2,
        "line_padding_top": 2,
        "word_wrap": true,
        "wrap_width": 90,
        "rulers":
        [
            90,100
        ],
        "vintage_ctrl_keys": true,
        "shell_exec_executable": "/bin/zsh",
        "tab_size": 4,
        "theme": "Default.sublime-theme",
        "translate_tabs_to_spaces": true,
        "vintageous_use_ctrl_keys": true,
        "vintageous_use_super_keys": true,
    }
    

  • 相关阅读:
    计算机组成原理:“性能”是什么?
    试题 基础练习 Huffuman树
    最小堆的插入删除函数
    特殊函数
    进程控制
    进程的描述
    进程管理
    生成和配置Linux操作系统
    系统调用
    Shell脚本编程
  • 原文地址:https://www.cnblogs.com/tiantiandas/p/configuring_sublime_in_macos.html
Copyright © 2011-2022 走看看