Skip to content

My Favorite Sublime Text 2 Plugins aka Packages

Posted on:July 26, 2012code7 min read

The current code editor that is widely in vogue amongst programmers is far and above Sublime Text 2. There's many reasons that ST2 usurped this crown previously held by TextMate (it's new and actively maintained) but one of the biggest reasons is its ability to have its core functionality extended via plugins.

The plugins that you can install for ST2 make this otherwise light weight text editor all that much more powerful and effective - but only in the areas you care about.

I've grown particularly attached to a couple of ST2 plugins. Ones that I know that if I hadn't found them my love for ST2 wouldn't be as strong as it currently is. So in a very particular order what follows are my favorite and most appreciated plugins for Sublime Text 2 that I use on a daily basis.

Note: It is of tremendous help to know of one keyboard shortcut for ST2 that lets you easily access the majority of the following plug-ins: Cmd+Shift+P. Hit that keyboard shortcut and you'll see the Command Palette at the top of your ST2, in which you can take advantage of ST2's fuzzy search to find the particular feature you want to use.

Package Control

Without this plugin your entire ST2 plug-in experience will be dismal. I say this with all sincerity and seriousness: Package Control makes packages fun and easy to use.

Basically Package Control connects to a remote server that holds a large public list of published packages for ST2. It can then download any of those plug-ins and install them directly into your copy of ST2 without ever moving your mouse. It's a wonderful experience, one I feel that should have have been included by default in ST2.

Quick Demo of Awesomeness

  1. Open Command Palette (Cmd+Shift+P)
  2. Type 'pa in' - you should see 'Package Control - Install Package' highlighted at the top.
  3. Type 'SublimeLinter', hit enter and voila! SublimeLinter is now installed!

SublimeLinter

SublimeLinter was one of those packages that I originally thought it'd be neat to have but I wouldn't really need. I couldn't have been more wrong.

SublimeLinter has quickly shot to the top of my list of must have packages, becoming an integral part of my productivity suite.

After installing SublimeLinter you will be linting your code as you type. This means that you can not only see what syntax errors you might be creating but you can also catch code style issues (Python’s PEP8 I'm looking at you).

The ability to lint your code as you type has helped me catch countless careless mistakes. Let's say I forgot to include a closing parenthesis. Rather than executing my code only to find an error I'm able to see the error as I write it and correct it right then and there. This saves me time, stress, and grief.

Another area that I've found SublimeLinter to be of great help is when learning a new language. Think of SublimeLinter as a bowling lane with the bumpers put in. It helps keep you between the lines of the language, nudging you toward real code when you start to veer to the edges.

Quick Demo of Awesomeness

  1. Create a JavaScript file and type in a simple if statement.
  2. Don't put the if statement in parenthesis.
  3. See the live linting do it's magic.
  4. Profit.

SideBarEnhancements

I'm not entirely sure why this plugin isn't included by default. It gives you a wealth of options when right clicking files in ST2’s sidebar.

You can delete a file, duplicate it, and any other file operations you can think of.

I use this plugin all the time when creating a new JS file or CSS file. Before I'd have to open up Terminal or Finder to do any simple file system manipulation. This plugin saves me that time and distraction away from ST2.

Quick Demo of Awesomeness

  1. Open a saved file in ST2.
  2. Right click on the file.
  3. Behold the multitude of options now at your fingertips.

GitHubinator

This is such a simple lovely plugin.

Basically if you're working on a project whose repo is also on GitHub you can quickly open the GitHub page of that file through a keyboard shortcut.

I use this all the time at work to easily link a co-worker to a line of code that I might need help with.

Again it's the time this plugin saves me that makes it so valuable. It's not hard to open GitHub and navigate to the file, however it's something that can be automated and that's what this plugin does.

Quick Demo of Awesomeness

  1. Open a local repo that is on GitHub.
  2. Go to any random file and line.
  3. Either hit Cmd+\ or right click on the document and hit ’Githubinator’ to see the plugin in action.
  4. Find yourself on the GitHub page of that file.

Git

This plugin brings the power of the Git command line to ST2.

You can run git status through the Command Palette and ST2 will open a new file tab to show you the results.

Or you can git log. Or a git blame. Honestly that's how I use this plugin the most. To run a quick git blame to see which one of my co-workers I can ping for help on a line of code they wrote.

Quick Demo of Awesomeness

  1. Open a file in a local git repository.
  2. Open the Command Palette (Cmd+Shift+P).
  3. Type ’git blame’ and hit enter.
  4. A new ST2 tab will open with the git blame output.

ZenCoding

I was curious about the excitement around ZenCoding for a while. It wasn't till installing the ST2 package and playing around with it that I become a complete convert to the ZenCoding way of life.

ZenCoding makes scaffolding new layouts a complete breeze by taking your shorthand DOM structure and expanding it to full HTML tags. Rather than having to monotonously type ever closing tag for every new <div/> ZenCoding takes care of that for me, expanding and creating the tags it knows I want to use.

ZenCoding saves times, and for me that's what makes it so valuable.

Quick Demo of Awesomeness

  1. Open a new file.
  2. Type: table>(tr>td*2)*3
  3. Hit tab.

CoffeeScript

I've recently become a big fan of CoffeeScript. Unfortunately ST2 doesn't ship with language support for CoffeeScript file.

Fortunately there's a plugin that gives ST2 CoffeeScript syntax support. And thank goodness it does because I would not enjoy writing CS without proper syntax highlighting.

Quick Demo of Awesomeness

  1. Open a CoffeeScript file.
  2. See how wonderfully highlighted the file is.

Theme - Soda

Theme - Soda isn't really a plugin per se, however it is installed like one. Don't get me wrong, the default theme of ST2 isn't painful to look at, however I have found this theme to be more joyful to use while I'm coding throughout the day.

There's a light and dark theme, so depending on your preference there's a Soda theme that's right for you. Also be sure to find your favorite color scheme to match, or you can just use the one Soda uses.

Quick Demo of Awesomeness

  1. Activate the Soda Theme.
  2. Close and reopen ST2.
  3. Enjoy the new prettiness.

Wrap Up

So there you have it, my favorite Sublime Text 2 plugins aka packages. These are the ones I couldn't live without however I also make use of quite a few other plugins.

I encourage you to browse the list of published packages to see of there's one there that will make your daily coding experience that much more enjoyable. After all, every bit helps to make coding on a daily basis a pleasurable experience.

If you have any packages you use that you can't live without please let me know about them in the comments! I'm always on the lookout for that next best package.

Who knows? Maybe you'll even create it :).