Skip to content

Instantly share code, notes, and snippets.

@danmaispace
Created December 28, 2012 05:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danmaispace/4394869 to your computer and use it in GitHub Desktop.
Save danmaispace/4394869 to your computer and use it in GitHub Desktop.
sublime-settings
{
"color_scheme": "Packages/RailsCasts Colour Scheme/RailsCastsColorScheme.tmTheme",
"detect_slow_plugins": false,
"file_exclude_patterns":
[
".DS_Store",
".tags*",
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.log",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
"*.class",
"*.psd",
"*.db",
"*.pdf"
],
"folder_exclude_patterns":
[
"data",
".zeus.sock",
".git",
".svn",
".hg",
"CVS",
".sass-cache",
".bundle",
"bundle",
".rbx",
"bin",
"tmp"
],
"font_size": 13.0,
"ignored_packages":
[
"Http Requester",
"Vintage",
"SublimeXiki",
"SublimeLinter"
],
"tab_size": 2,
"translate_tabs_to_spaces": true,
"todo":
{
"file_exclude_patterns":[
"*.css", "*.po", "*.mo"
],
"folder_exclude_patterns": [
"static", "vendor", "tmp"
],
"patterns":
{
"TODO": "TODO[\\s]*?:+(?P<todo>.*)$",
"NOTE": "NOTE[\\s]*?:+(?P<note>.*)$",
"FIXME": "FIX ?ME[\\s]*?:+(?P<fixme>\\S.*)$",
"CHANGED": "CHANGED[\\s]*?:+(?P<changed>\\S.*)$",
"BUG": "BUG[\\s]*?:+(?P<bug>.*)$"
},
"case_sensitive": true,
"result_title": "TODO Results"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment