How to install & manage TextMate bundles

bundletextmate

In the beginning, there was a canonical SVN repository for TextMate bundles, and the recommended installation unpacked them into a Pristine Bundles folder so that TextMate's bundle manager could save your dirty customizations in a separate Bundles folder.

Now that nearly everyone's using git, does it still make sense to use Pristine Bundles, or is it more appropriate to keep the installed bundle in the Bundles folder and manage customizations with git?

What convenience tools are available for discovering, installing, and updating bundles? It seems there's a getBundle and a getBundles, and no real authoritative way to do it.

I'm starting to think it's probably best to just search GitHub for ".tmbundle" to find the stuff and install it by hand.

Basically, my question is: how do you do it? Is any method better than the others for staying on top of your installed bundles?

Best Answer

Depends on your skill level, you can either download the bundles, then drag and drop them into your Users>my.name>Libary>Application Support>TextMate>Bundles folder, or you can use subversion in terminal like so

mkdir -p /Library/Application\ Support/TextMate/Bundles
cd /Library/Application\ Support/TextMate/Bundles
svn co http://svn.textmate.org/trunk/Bundles/Haskell.tmbundle

More info you can check out their detailed docs on the TextMate site http://manual.macromates.com/en/bundles

Related Question