Skip to content

Instantly share code, notes, and snippets.

@slor
Last active December 15, 2015 20:59
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 slor/5322787 to your computer and use it in GitHub Desktop.
Save slor/5322787 to your computer and use it in GitHub Desktop.
Sublime Text 2 setup
<snippet>
<content><![CDATA[import ipdb; ipdb.set_trace()]]></content>
<tabTrigger>ipdb</tabTrigger>
<scope>source.python</scope>
<description>ipdb debug tool</description>
</snippet>
{
// Set this to false to turn pep8 checking off completely
"pep8": true,
// Ignore line-too-long and over/under indented line continuation.
"pep8_ignore": [
"E127", "E128", "E501"
]
}
// based on http://kennethreitz.org/exposures/sublime-text-2-love
{
"auto_complete": false,
"close_windows_when_empty": false,
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"draw_white_space": "all",
"find_selected_text": true,
"fold_buttons": false,
"folder_exclude_patterns": [
".svn",
".git",
".hg",
"CVS",
"_build",
"dist",
"build",
"site"
],
"font_face": "Ubuntu Mono",
"font_options": [
"subpixel_antialias"
],
"font_size": 20,
"highlight_line": true,
"ignored_packages": [
"SublimeRope"
],
"rulers": [
72,
79
],
"theme": "Soda Light.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment