Sublime美化配置

1.主题预览

material主题:https://equinsuocha.io/material-theme/#/default

2.效果预览

{
	"ignored_packages":
    [
        "Vintage"
    ],
	"indent_guide_options":
	[
		"draw_normal",
		"draw_active"
	],
    // fonts
    "font_options": [
        "gray_antialias",
        "subpixel_antialias"
    ],
    "font_size": 14,
    "line_padding_bottom": 3,
    "line_padding_top": 3,
    "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",
    // Themes
    "theme": "Material-Theme.sublime-theme",
    "color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
    "material_theme_arrow_folders": true,
    // Panels
    "material_theme_accent_scrollbars": true, // Enable accent color for scrollbars
    "material_theme_accent_titlebar": true, // Enable accent color for titlebar
    "material_theme_bright_scrollbars": true, // Bright scrollbars puck color
    "material_theme_compact_panel": true, // Set minimal padding for the search panel
    "material_theme_contrast_mode": true, // Enable sidebar and panels contrast mode
    "material_theme_panel_separator": true, // Show bottom panel separator
    "material_theme_small_statusbar": true, // Set small status bar
    "material_theme_titlebar": true, // Enable title bar (OS X 10.10+)

    // Sidebar
    "material_theme_arrow_folders": true, // Replace folder icons with arrows
    "material_theme_big_fileicons": true, // Show bigger file type icons
    "material_theme_bullet_tree_indicator": true, // Set a bullet as active tree indicator
    "material_theme_compact_sidebar": true, // Set compact sidebar
    "material_theme_disable_fileicons": true, // Hide sidebar file type icons
    "material_theme_disable_folder_animation": true, // Disable folder animation
    "material_theme_disable_tree_indicator": true, // Disable sidebar file indicator
    
    // Tabs
    "material_theme_bold_tab": true, // Make the tab labels bolder
    "material_theme_small_tab": true, // Set small tabs
    "material_theme_tabs_autowidth": true, // Enable autowidth for tabs
    "material_theme_tabs_separator": true, // Show tabs separator, this disables tab hover animation

    // If you use Material Theme - Appbar addon, you can use this setting:
    "material_theme_tree_headings": true, // Show sidebar headings

}
原文地址:https://www.cnblogs.com/ae6623/p/9041508.html