Skip to content

Instantly share code, notes, and snippets.

@mefellows
Created July 26, 2013 13:42
Show Gist options
  • Save mefellows/6088935 to your computer and use it in GitHub Desktop.
Save mefellows/6088935 to your computer and use it in GitHub Desktop.
My Sublime Preferences file. Kudos to http://ryantvenge.com/2013/07/sublime-text-preferences-file/ where this originated.
{
// Reduces red-eye (tip: red bull may undo this)
"font_size": 18.0,
// Love Vim < love Sublime
"ignored_packages":
[
"Vintage"
],
// 2 is better than 1
"tab_size": 2,
// I hate tabs
"translate_tabs_to_spaces": true,
// Distinguish Folders from files
"bold_folder_labels": true,
// I had some plugins choking on my VPN
"detect_slow_plugins": false,
// Because I exclusively use SCSS, I turned off css. Can be an issue if you have a project that is vanilla css.
"file_exclude_patterns":
[
"*.css",
".DS_Store",
"*.scssc"
],
// Excluding junk files
//
"folder_exclude_patterns":
[
"tmp",
".sass-cache",
// Also excluding wordpress core (If I need to reference core, I'm using Project Find feature)
"wp-admin",
"wp-includes",
// Java / Compiled
"bin",
"output",
"target",
".git",
// Sadly, I still have to deal with this
".svn",
// Terrifyingly, I still have to deal with this
"CVS"
],
// Need to download and install from here: http://font.ubuntu.com/
"font_face": "Ubuntu Mono",
// Can't remember what this is for :(
"font_options":
[
"no_bold",
"subpixel_antialias"
],
// This is an OSX bug
"open_files_in_new_window": false,
// I like to scroll so my last line of code can be at the top of the page.
"scroll_past_end": true,
// Found this out after asking the question on ShopTalk: http://shoptalkshow.com/episodes/016-with-ian-stewart/
"spell_check": true,
// Great if you are OCD or just JSHint.
"trim_trailing_white_space_on_save": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment