博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sublime preference配置
阅读量:4041 次
发布时间:2019-05-24

本文共 1680 字,大约阅读时间需要 5 分钟。

 

Preferences.sublime-setting配置---------------------

备注:

1.安装flatland主题,(通过 “Package Control: Install Package” 命令搜索 Theme - Flatland,确认安装即可

 

{

"auto_match_enabled": true,
"theme": "Flatland Dark.sublime-theme",
"color_scheme": "Packages/Theme - Flatland/Flatland Dark.tmTheme",
"default_line_ending": "unix",
"detect_slow_plugins": true,
"font_face": "Microsoft YaHei",
"font_size": 10,
"gutter": true,
"highlight_line": true,
"ignored_packages":
[
"jQuery",
"Vintage"
],
"indent_subsequent_lines": true,
"line_padding_bottom": 1,
"line_padding_top": 1,
"rulers":
[
80
],
"tab_size": 8,
"translate_tabs_to_spaces": true,
"word_wrap": true,
"wrap_width": 0,

"update_check":false,

}

 

 

2.安装Material主题,(通过 “Package Control: Install Package” 命令搜索 Material Theme,确认安装即可

{

    "auto_match_enabled": true,
    "default_line_ending": "unix",
    "detect_slow_plugins": true,
    "font_face": "Microsoft YaHei",
    "font_size": 9,
    "gutter": true,
    "highlight_line": true,
    "ignored_packages":
    [
        "jQuery",
        "Vintage"
    ],
    "indent_subsequent_lines": true,
    // "line_padding_bottom": 1,
    // "line_padding_top": 1,
    "rulers":
    [
        80
    ],
    "tab_size": 4,
    // "theme": "Flatland Dark.sublime-theme",
    "translate_tabs_to_spaces": true,
    "update_check": false,
    "word_wrap": true,
    "wrap_width": 0,

    "color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",

    "theme": "Material-Theme.sublime-theme",

    "always_show_minimap_viewport" : true,

    "bold_folder_labels"           : true,
    "font_options"                 : ["gray_antialias", "subpixel_antialias"], // On retina Mac & Windows
    "indent_guide_options"         : ["draw_normal", "draw_active"], // Highlight active indent
    "line_padding_bottom"          : 3,
    "line_padding_top"             : 3,
    "overlay_scroll_bars"          : "enabled"
}
 

转载地址:http://cuadi.baihongyu.com/

你可能感兴趣的文章
No.176 - LeetCode1309
查看>>
No.182 - LeetCode1325 - C指针的魅力
查看>>
mysql:sql create database新建utf8mb4 数据库
查看>>
mysql:sql alter database修改数据库字符集
查看>>
mysql:sql drop table (删除表)
查看>>
mysql:sql truncate (清除表数据)
查看>>
scrapy:xpath string(.)非常注意问题
查看>>
yuv to rgb 转换失败呀。天呀。谁来帮帮我呀。
查看>>
yuv420 format
查看>>
YUV420只绘制Y通道
查看>>
yuv420 还原为RGB图像
查看>>
LED恒流驱动芯片
查看>>
驱动TFT要SDRAM做为显示缓存
查看>>
使用file查看可执行文件的平台性,x86 or arm ?
查看>>
qt5 everywhere 编译summary
查看>>
qt5 everywhere编译完成后,找不到qmake
查看>>
arm-linux开机读取硬件时钟,设置系统时钟。
查看>>
交叉编译在x86上调试好的qt程序
查看>>
qt 创建异形窗体
查看>>
可重入函数与不可重入函数
查看>>