Skip to content

Instantly share code, notes, and snippets.

@joshvermaire
Created August 11, 2012 01:39
Show Gist options
  • Save joshvermaire/3319827 to your computer and use it in GitHub Desktop.
Save joshvermaire/3319827 to your computer and use it in GitHub Desktop.
Current Sublime Text 2 User Preferences
{
// Wide caret_style...wish it blinked as well
"caret_style": "wide",
// Custom Theme
"color_scheme": "Packages/User/Solarized (Dark).tmTheme",
// Ensure new line of end of file on save
"ensure_newline_at_eof_on_save": true,
// Amazing font http://levien.com/type/myfonts/inconsolata.html
"font_face": "Inconsolata",
// Inconsolata is small in general
"font_size": 15.0,
// Highligh tabs to show modified files
"highlight_modified_tabs": true,
// Shift tab unindents the line
"shift_tab_unindent": true,
// Set default tab size to 2
"tab_size": 2,
// Use soft tabs (spaces)
"translate_tabs_to_spaces": true,
// Exclude node_modules and deprecated folders from search, sidebar, and goto anything
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", "deprecated", "node_modules"],
// Exclude sublime project files and files ending in .orig from search, sidebar, and goto anything
"file_exclude_patterns": ["*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db", "*.orig", "*.sublime-project", "*.sublime-workspace"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment