Skip to content

Instantly share code, notes, and snippets.

Created January 3, 2013 00:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/4439883 to your computer and use it in GitHub Desktop.
Save anonymous/4439883 to your computer and use it in GitHub Desktop.
Sublime Text 2 Setup

If you don't already use package control.

My favorites

SideBarEnhancements
GitGutter
SFTP
SideBarEnhancements

For the sublime_text_python_checker, you have to add the github repo of the project, since its not on the package control repo. To do that do Command-Shift-P to bring up the command window, and go to Package Control: Add Respository, to add the repo git://github.com/vorushin/sublimetext_python_checker.git.

There are lots of articles on how to get the most out of the editor.

{
"close_windows_when_empty": true,
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow.tmTheme",
"create_window_at_startup": false,
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"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": 14.0,
"highlight_line": true,
"ignored_packages":
[
"Vintage"
],
"rulers":
[
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