Skip to content

Instantly share code, notes, and snippets.

@soffes
Created August 22, 2012 05:35
Show Gist options
  • Save soffes/3422528 to your computer and use it in GitHub Desktop.
Save soffes/3422528 to your computer and use it in GitHub Desktop.
My Sublime Text 2 config
{
"bold_folder_labels": true,
"color_scheme": "Packages/User/Espresso Soda.tmTheme",
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
".DS_Store",
".gitkeep",
"dump.rdb"
],
"folder_exclude_patterns":
[
".git",
".sass-cache",
"coverage",
"log",
"tmp"
],
"font_face": "Menlo",
"font_size": 13.0,
"highlight_modified_tabs": true,
"save_on_focus_lost": true,
"tab_size": 2,
"theme": "Soda Light.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
@srikat
Copy link

srikat commented Aug 22, 2012

Thanks.

I borrowed the following from your list:

"highlight_modified_tabs": true,
"save_on_focus_lost": true

@jaymiejones86
Copy link

Great to see some of your options. The folder exclusions have been quite helpful.

@Gavrisimo
Copy link

Thanks! Dunno how I lived without file(folder)_exclude_patterns... =D

@verpixelt
Copy link

Super nice config! Have copied a few parts of it, thank you.

@melvinsh
Copy link

Nice one!

@alex-seville
Copy link

Nice, I used this to ignore the minified version of our scripts. I really helps when doing a "Find in files...". Thanks!

@CWSpear
Copy link

CWSpear commented Aug 22, 2012

Wow, I borrowed a bunch of items from you. Cool things that I didn't think could be done, but will make my coding experience that much nicer (i.e. highlight_modified_tabs). Thanks!

@jstoudt
Copy link

jstoudt commented Aug 22, 2012

highlight_modified_tabs?! Why didn't I know about that one before? Awesome! Thanks!

@ggamel
Copy link

ggamel commented Aug 23, 2012

A few tweaks I have in my own setup:

and

"open_files_in_new_window": true

@ggamel
Copy link

ggamel commented Aug 23, 2012

"open_files_in_new_window": false

is how that should read. I did a copy/pasta of the wrong stuff.

@benfrain
Copy link

Brilliant, had no idea about these:

"highlight_modified_tabs": true,
"bold_folder_labels": true,
"trim_trailing_white_space_on_save": true,
"open_files_in_new_window": false

@jacobgraf
Copy link

Love it. Thanks!

I had a few minor tweaks!

{
  "create_window_at_startup": false,
  "soda_classic_tabs": true,
  "word_wrap": "false",
  "highlight_line": true
}

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