Skip to content

Instantly share code, notes, and snippets.

@pallavsharma
Forked from asuh/Preferences.sublime-settings
Last active September 9, 2020 06:50
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 pallavsharma/8f19a06d7136c859e99c5dd199b1fab7 to your computer and use it in GitHub Desktop.
Save pallavsharma/8f19a06d7136c859e99c5dd199b1fab7 to your computer and use it in GitHub Desktop.
Sublime Text 3 User Preferences sublime-settings file
{
"always_show_minimap_viewport": true,
// Using ⌘-P, these files will never be shown in results
"binary_file_patterns":
[
"*.ai",
"*.dds",
"*.eot",
"*.gif",
"*.ico",
"*.jar",
"*.jpg",
"*.jpeg",
"*.map",
"*.min.js",
"*.otf",
"*.pdf",
"*.png",
"*.psd",
"*.swf",
"*.tga",
"*.ttf",
"*.zip",
"_tmp/",
"*.DS_Store",
".sass-cache/",
"node_modules/",
"tmp/"
],
"bold_folder_labels": true,
// This makes the caret bigger, obvious and blinking!
"caret_extra_bottom": 2,
"caret_extra_top": 2,
"caret_extra_width": 3,
"caret_style": "phase",
// Seti UI, yo
"draw_minimap_border": true,
// line 372 in Default, this simplifies what files and folders don't show up in the side bar, add more at your own peril
"file_exclude_patterns":
[
"*.ai",
"*.db",
"*.pdf",
"*.psd",
"*.sassc",
"*.scssc",
"*.sublime-project",
"*.sublime-workspace",
"*.zip",
"*.DS_Store",
"config.codekit"
],
"folder_exclude_patterns":
[
".bin",
".git",
".hg",
".sass-cache",
".svn",
"bin",
"CVS",
"tmp",
"wp-admin",
"wp-includes"
],
"highlight_line": true,
"highlight_modified_tabs": true,
// Adding draw_active will change the color of the inner most guide
"indent_guide_options":
[
"draw_active",
"draw_normal"
],
"line_padding_bottom": 1,
"line_padding_top": 1,
"match_brackets_angle": true,
// ANNOYING OSX-only bug that prevents files opening in their own window
"open_files_in_new_window": false,
// Why? Because I use a large 27" monitor on top of my laptop screen
"scroll_past_end": true,
// Why not turn this on by default? Spell check all the things!
"spell_check": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": true,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"detect_indentation": true,
"copy_with_empty_selection": true,
"ensure_newline_at_eof_on_save": true,
"expand_tabs_on_save": true,
"font_size": 11,
"ignored_packages":
[
"Vintage"
],
"index_files": true,
"rulers":
[
79
],
"trim_automatic_white_space": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment