Skip to content

Instantly share code, notes, and snippets.

@Viper007Bond
Created November 24, 2011 08:51
Show Gist options
  • Save Viper007Bond/1390918 to your computer and use it in GitHub Desktop.
Save Viper007Bond/1390918 to your computer and use it in GitHub Desktop.
My Sublime Text 2 Configuration Files
// File Settings - User
{
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"font_face": "Consolas", // Windows, you'll likely want default or something else
"font_size": 10,
//"spell_check": true,
"draw_white_space": "all", // I like my tabs/spaces to show
//"highlight_line": true,
"fallback_encoding": "UTF-8",
"foo": "bar" // Here to avoid having to deal with commas above
}
// Global Settings - User
{
"theme": "Soda Dark.sublime-theme", // Custom, see https://github.com/buymeasoda/soda-theme
"highlight_modified_tabs": true,
// I don't want Sublime to reopen to where it was when I closed it
"hot_exit": false,
"remember_open_files": false,
"scroll_speed": 0, // I don't like smooth scrolling
"file_exclude_patterns":
[
".*",
"*.tmp",
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.png",
"*.mo",
"*.ttf",
"*.jpg",
"*.gif",
"*.swf",
"*.gz",
"*.m4v"
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
".*",
"production",
"html-purifier",
"themes",
"languages"
],
"foo": "bar" // Here to avoid having to deal with commas above
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment