Skip to content

Instantly share code, notes, and snippets.

@mpslanker
Created February 5, 2016 16:06
Show Gist options
  • Save mpslanker/b2b5b2b39f54ccf4ebf0 to your computer and use it in GitHub Desktop.
Save mpslanker/b2b5b2b39f54ccf4ebf0 to your computer and use it in GitHub Desktop.
Sublime Text theme, scheme, and functionality settings.
{
// Style Settings (Sublime)
"theme" : "Material-Theme.sublime-theme",
"color_scheme" : "Packages/Material Theme/schemes/Material-Theme-OceanicNext.tmTheme",
"show_full_path" : true,
"show_minimap" : false,
"bold_folder_labels" : true,
"fade_fold_buttons" : false,
"wide_caret" : true,
"tab_size" : 4,
"font_face" : "Hack",
"font_options":
[
"gray_antialias",
"directwrite",
"subpixel_antialias"
],
"font_size" : 10,
"overlay_scroll_bars" : "enabled",
"enable_tab_scrolling" : false,
"use_simple_full_screen" : true,
"vintage_start_in_command_mode" : false,
"line_padding_top" : 3,
"line_padding_bottom" : 3,
"always_show_minimap_viewport" : true,
// Functionality Settings
"word_wrap" : false,
"auto_complete" : false,
"auto_complete_commit_on_tab" : true,
"auto_match_enabled" : true,
"caret_style" : "phase",
"detect_indentation" : true,
"draw_indent_guides" : true,
"draw_white_space" : "all",
"ensure_newline_at_eof_on_save" : true,
"find_selected_text" : true,
"fold_buttons" : false,
"highlight_line" : true,
"highlight_modified_tabs" : true,
"match_brackets" : true,
"match_brackets_angle" : false,
"match_brackets_braces" : true,
"match_brackets_content" : true,
"match_brackets_square" : true,
"save_on_focus_lost" : false,
"scroll_past_end" : false,
"show_encoding" : true,
"translate_tabs_to_spaces" : true,
"trim_trailing_white_space_on_save" : true,
"indent_guide_options" : [ "draw_normal", "draw_active" ], // Highlight active indent
"rulers":
[
72,
79
],
// Exclusion Patterns
"file_exclude_patterns":
[
"*.DS_Store",
"*.pyc",
"*.git"
],
"folder_exclude_patterns":
[
],
"ignored_packages":
[
"Vintage"
],
"indent_to_bracket" : true,
"line_padding_bottom" : 0,
"line_padding_top" : 0,
"new_window_settings":
{
"hide_open_files" : true,
"show_tabs" : true,
"side_bar_visible" : true,
"status_bar_visible" : true
},
"remember_open_files" : true,
"remember_open_folders" : true,
// Theme specific settings
"material_theme_accent_purple" : false, // set purple accent color
"material_theme_small_tab" : true, // Set small tabs
"material_theme_disable_fileicons" : false, // Hide siderbar file type icons
"material_theme_small_statusbar" : true, // Set small status bar
"material_theme_compact_sidebar" : true, // Set compact sidebar
"material_theme_disable_tree_indicator" : true, // Disable sidebar file indicator
"material_theme_bold_tab" : true, // Make the tab labels bolder
"material_theme_tabs_separator" : true, // Show tabs separator, this disable tab animation hover
"material_theme_panel_separator" : true, // show bottom panel separator
"material_theme_tabs_autowidth" : true, // Enable autowidth for tabs
"material_theme_tree_headings" : true, // Show siderbar headings
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment