Last active
December 15, 2015 20:59
-
-
Save slor/5322787 to your computer and use it in GitHub Desktop.
Sublime Text 2 setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[import ipdb; ipdb.set_trace()]]></content> | |
<tabTrigger>ipdb</tabTrigger> | |
<scope>source.python</scope> | |
<description>ipdb debug tool</description> | |
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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