Skip to content

Instantly share code, notes, and snippets.

@ethe
Last active January 4, 2016 08:25
Show Gist options
  • Select an option

  • Save ethe/eedc8b7bbe09cea695c6 to your computer and use it in GitHub Desktop.

Select an option

Save ethe/eedc8b7bbe09cea695c6 to your computer and use it in GitHub Desktop.
{
"dpi_scale": 1.3, // dpi缩放比,适配高分辨率屏幕
"font_size": 13, // 字号
"font_face": "Ubuntu Mono", // 字体
"save_on_focus_lost": true, // 失去焦点自动保存
"ensure_newline_at_eof_on_save": true, // 保存时自动在文件末空行
"trim_trailing_white_space_on_save": true, // 保存时自动移出行末空格
"theme": "Material-Theme-Darker.sublime-theme", // 编辑器主题
"color_scheme": "Packages/Theme - Brogrammer/brogrammer.tmTheme", // 语法高亮主题
"tab_size": 4, // 默认缩进长度
"translate_tabs_to_spaces": true, // 将缩进转换为空格
"indent_guide_options": ["draw_normal", "draw_active"], //缩进层数展示
"margin": 0, // 行号边栏与主窗口的间距
"rulers": [120], // 标尺
"line_padding_bottom": 3, // 设置每一行到底部,以像素为单位的间距,效果相当于行距
"line_padding_top": 3, // 设置每一行到顶部,以像素为单位的间距,效果相当于行距
"font_options": [ "gray_antialias" ], //抗锯齿
"caret_style": "smooth", // 光标闪烁方式
// "highlight_line": true, // 高亮光标所在行
"overlay_scroll_bars": "enabled", // 滚动条隐藏
"always_show_minimap_viewport": true, // 永远在迷你地图中显示当前窗口所在位置
"bold_folder_labels": true, // 文件树与窗口标签字体加粗
"material_theme_contrast_mode": true, // Material Theme: 加大主题对比度
"material_theme_small_tab": true, // Material Theme: 小文件标签栏
"material_theme_tabs_autowidth": true , // Material Theme: 文件标签宽度自动调整
"material_theme_small_statusbar": true , // Material Theme: 顶部小状态栏
"material_theme_panel_separator": true , // Material Theme: 底部工具栏分割
"ignored_packages": // 忽略已安装插件
[
"Python",
"Vintage"
],
"folder_exclude_patterns": // 文件树忽略文件
[
".svn",
".git",
"node_modules",
"migrations",
".idea"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment