Skip to content

Instantly share code, notes, and snippets.

@asuh
Last active November 17, 2022 18:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save asuh/67586e056eba7757330f to your computer and use it in GitHub Desktop.
Save asuh/67586e056eba7757330f 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",
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme",
// 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"
],
"font_size": 21,
"font_face": "Rec Mono Casual",
"font_options":
[
"gray_antialias",
"subpixel_antialias"
],
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"A File Icon",
"Markdown",
"zzz A File Icon zzz",
],
// 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,
"mini_diff": false,
// 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,
"theme": "Material-Theme-Darker.sublime-theme",
"trim_trailing_white_space_on_save": "all",
"trim_only_modified_white_space": false,
"word_wrap": true,
"material_theme_titlebar": true,
"update_check": true,
}
@asuh
Copy link
Author

asuh commented Jan 31, 2018

Packages I use:
A File Icon
AdvancedNewFile
Alignment
AutoFileName
BracketHighlighter
Color Highlighter
Compare Side-by-Side
EditorConfig
Emmet
ES6-Toolkit
Flexbox Snippets
GitGutter
JSCS-Formatter
JSX
Material Theme
Package Control
React ES6 Snippets
Sass
Schemr
SCSS
Set_UI
SideBarEnhancements
SubtlimeLinter

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment