Skip to content

Instantly share code, notes, and snippets.

@skube
Last active March 12, 2017 23:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skube/2e345b96c4111f8d5cc2 to your computer and use it in GitHub Desktop.
Save skube/2e345b96c4111f8d5cc2 to your computer and use it in GitHub Desktop.
One true source for Sublime Text Prefs: User Settings with comments and ordered
// Sublime Text (on restart) strips comments out and alphabetizes properties
// This is my one true, organized & commented source of User setting overrides
// Should be in order of Default settings followed by optional user packages
{
// Sublime Defaults
//"color_scheme": "Packages/Dracula Color Scheme/Dracula.tmTheme",
"color_scheme": "Packages/User/SublimeLinter/Acai (SL).tmTheme",
"font_size": 16,
"font_face": "Operator Mono",
//"font_face": "Fira Code",
"font_size": 20,
"font_options":
[
"gray_antialias",
"subpixel_antialias"
],
"rulers": [80],
"spell_check": true,
"tab_size": 2, /* default is 4 */
"indent_to_bracket": true,/* works only on parenthesis */
"dictionary": "Packages/Language - English/en_GB.dic",
"draw_minimap_border": true,
"always_show_minimap_viewport": true, // just hide completely
"highlight_line": true,
"caret_style": "phase",
"wide_caret": true,/*undocumented*/
"caret_extra_top": 2,/*when in Insert mode?*/
"caret_extra_bottom": 2,
"caret_extra_width": 2,
"match_brackets_angle": true,
"line_padding_top": 4,
"line_padding_bottom": 4,
"draw_white_space": "all",
"indent_guide_options": ["draw_active","draw_normal"],
"auto_complete_commit_on_tab": true,
"use_simple_full_screen": true, //OS X only
// Sublime UI Settings
"theme": "Boxy Tomorrow.sublime-theme",
//"theme": "Material-Theme.sublime-theme",
"theme_accent_blue": true,
"theme_autocomplete_item_selected_colored": true,
"theme_dirty_accent_lime": true,
"theme_font_lg": true,
"theme_icons_materialized": true,
"theme_popup_border_visible": true,
"theme_sidebar_folder_materialized": true,
"theme_sidebar_folder_mono": true,
"theme_size_xl": true,
"theme_tab_selected_filled": true,
"theme_tab_width_auto": true,
"highlight_modified_tabs": true,
"bold_folder_labels": true,
"show_encoding": true,
"ignored_packages":
[
"Comment-Snippets",
"CSS3_Syntax",
"Vintage"
],
"vintage_start_in_command_mode": false,
// User Installed Packages
// AutoFileName
//"afn_proj_root": "f:/dev/htdocs/",
//"afn_use_project_root": true,
"afn_valid_scopes":
[
"string",
"css",
"sass",
"less",
"scss",
"jsp",
"html"
],
// ColorHighlighter.sublime-settings file
// "none", "filled", "outlined", "underlined_solid", "underlined_strippled", "underlined_squiggly"
"style": "outlined", /* only when under cursor*/
"ha_style": "none", /* highlight all at once*/
"icons": false,
// SublimeFiglet
"figlet_font": "banner",
// Vintageous to enable Ctrl-U/D for page Up/Down
"vintageous_use_ctrl_keys": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment