Skip to content

Instantly share code, notes, and snippets.

@styliii
Created October 15, 2012 23:50
Show Gist options
  • Save styliii/3896413 to your computer and use it in GitHub Desktop.
Save styliii/3896413 to your computer and use it in GitHub Desktop.
preferences for sublime
{
"auto_complete_commit_on_tab": true,
"bold_folder_labels": true,
"color_scheme": "Packages/Solarized Color Scheme (TextMate)/Solarized (light).tmTheme",
"ensure_newline_at_eof_on_save": true,
"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",
".git",
".svn",
".hg",
"CVS",
".sass-cache",
".bundle",
"bundle",
".rbx",
"bin",
"script",
"tmp"
],
"font_face": "Inconsolata-dz",
"font_size": 24.0,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"line_padding_bottom": 0.5,
"line_padding_top": 0.5,
"new_window_settings":
{
"show_minimap": false
},
"rulers":
[
80
],
"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,
"todo":
{
"file_exclude_patterns":[
"*.po", "*.log", "*.scssc", "*.mo"
],
"folder_exclude_patterns": [
"static", "vendor", "tmp"
],
"patterns":
{
"BUG": "BUG[\\s]*?:+(?P<bug>.*)$"
},
"case_sensitive": true,
"result_title": "TODO"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment