Skip to content

Instantly share code, notes, and snippets.

@pedramamini
Last active January 1, 2016 06:29
Show Gist options
  • Save pedramamini/8105338 to your computer and use it in GitHub Desktop.
Save pedramamini/8105338 to your computer and use it in GitHub Desktop.
My SublimeText setup.

I'm running SublimeText 3 beta on MacOS, but this should apply everywhere. My user prefs:

{
	"always_show_minimap_viewport": true,
	"bold_folder_labels": true,
	"drag_text": false,
	"draw_minimap_border": true,
	"ensure_newline_at_eof_on_save": true,
	"highlight_line": true,
	"highlight_modified_tabs": true,
	"ignored_packages":
	[
		"Vintage"
	],
	"rulers":
	[
		120
	],
	"translate_tabs_to_spaces": true,
	"trim_trailing_white_space_on_save": true
}

Personally, I also download and use the Adobe Source Code Pro font:

http://blogs.adobe.com/typblography/2012/09/source-code-pro.html

Next, you'll want to install Package Control, which involves simply copy pasting a one-liner into your Sublime console:

https://sublime.wbond.net/installation

Installing additional packages now is a breeze. This is what I use:

  • Alignment, because I'm OCD with my code.
  • Function Name Display, display the current function name in the status bar.
  • GitGutter, highlight modified lines.
  • rsub, edit files on remote systems via SSH tunnel.
  • SideBarEnhancements, make the sidebar more useful.
  • SublimeGit, this one isn't free and I'm still playing with it, so far so good though.
  • SublimePythonIDE, this is the money maker right here. Lint, code completion, etc...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment