Skip to content

Instantly share code, notes, and snippets.

@zettoone
Forked from bkeepers/.gitignore
Created January 13, 2012 01:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zettoone/1604107 to your computer and use it in GitHub Desktop.
Save zettoone/1604107 to your computer and use it in GitHub Desktop.
My Sublime settings
{
"color_scheme": "Packages/Made of Code.tmTheme",
"draw_white_space": "selection",
"font_size": 14,
"line_padding_bottom": 0.5,
"line_padding_top": 0.5,
"tab_completion": true,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": true,
"trim_trailing_white_space_on_save": true
}
[
{ "keys": ["escape"], "command": "alternative_autocomplete", "context":
[
{ "key": "num_selections", "operator": "equal", "operand": 1 },
{ "key": "overlay_visible", "operator": "equal", "operand": false },
{ "key": "panel_visible", "operator": "equal", "operand": false }
]
},
{ "keys": ["shift+escape"], "command": "alternative_autocomplete", "args": {"cycle": "previous"}, "context":
[
{ "key": "num_selections", "operator": "equal", "operand": 1 },
{ "key": "overlay_visible", "operator": "equal", "operand": false },
{ "key": "panel_visible", "operator": "equal", "operand": false }
]
}
]
{
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.pdf"
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
".bundle",
"log",
"tmp",
".sass-cache"
],
"ignored_packages":
[
"Vintage"
],
"new_window_settings":
{
"show_minimap": false
},
"theme": "Soda Light.sublime-theme",
"highlight_modified_tabs": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment