【Web前端】Linux下Sublime Text3的一些配置

来源:互联网 发布:服务器开启80端口 编辑:程序博客网 时间:2024/05/20 15:39

前言

最近在折腾linux,在这里对sublime text做一些记录。

keybinding

[    {        "keys": ["ctrl+alt+j"],        "command": "css_format",        "args": {            "action": "compact"        }    },    {        "keys": ["ctrl+alt+l"],        "command": "htmlprettify"    },    {        "keys": ["ctrl+alt+k"],        "command": "css_comb"    },     { "keys": ["alt+ctrl+q"],        "command": "side_bar_files_open_with", "args":            { "paths": [], "application": "/opt/google/chrome/google-chrome", "extensions":".*" }    },    { "keys": ["alt+ctrl+w"],        "command": "side_bar_files_open_with", "args":            { "paths": [], "application": "/usr/lib/firefox/icons/firefox", "extensions":".*" }    },]

setting

{    "bold_folder_labels": true,    "color_scheme": "Packages/User/SublimeLinter/Monokai Extended (SL).tmTheme",    "font_size": 13,    "highlight_line": true,    "ignored_packages":    [        "Vintage"    ],    "rulers":    [        90    ],    "scroll_past_end": true,    "show_encoding": true,    "show_full_path": true,    "show_line_endings": true,    "tab_size": 4,    "theme": "Spacegray Eighties.sublime-theme",    "translate_tabs_to_spaces": true,    "trim_trailing_white_space_on_save": true}
0 0