Skip to content

Instantly share code, notes, and snippets.

@mtarnovan
Created August 27, 2012 13:00
Show Gist options
  • Save mtarnovan/3488234 to your computer and use it in GitHub Desktop.
Save mtarnovan/3488234 to your computer and use it in GitHub Desktop.
Install plugins, bundles and themes for textmate
#!/bin/bash
# plugins
cd ~/Downloads
curl -O http://cloud.github.com/downloads/protocool/AckMate/AckMate.1.1.1.zip
curl -O http://ciaranwal.sh/projectplus-files/ProjectPlus-1.3.dmg
unzip AckMate.1.1.1.zip && open AckMate.tmplugin && rm -rf AckMate.tmplugin && rm AckMate.1.1.1.zip
open ProjectPlus-1.3.dmg
cd /Volumes/ProjectPlus && open ProjectPlus.tmplugin
# bundles
mkdir -p ~/Library/Application\ Support/TextMate/Bundles
cd ~/Library/Application\ Support/TextMate/Bundles
git clone git://github.com/drnic/ruby-tmbundle ruby.tmbundle
git clone git://github.com/drnic/Bundler.tmbundle bundler.tmbundle
git clone git://github.com/drnic/ruby-on-rails-tmbundle rails.tmbundle
git clone git://github.com/drnic/I18n.tmbundle i18n.tmbundle
git clone git://github.com/drnic/Backbone.tmbundle backbone.tmbundle
git clone git://github.com/drnic/rspec-tmbundle rspec.tmbundle
git clone git://github.com/drnic/cucumber-tmbundle cucumber.tmbundle
git clone git://github.com/jashkenas/coffee-script-tmbundle coffeescript.tmbundle
git clone git://github.com/drnic/github-tmbundle.git github.tmbundle
git clone git://github.com/phuibonhoa/handcrafted-haml-textmate-bundle.git haml.tmbundle
git clone git://github.com/rspec/rspec-tmbundle.git rspec.tmbundle
git clone git://github.com/adamstac/sass-textmate-bundle.git sass.tmbundle
git clone git://github.com/mads379/scala.tmbundle.git scala.tmbundle
# themes
mkdir -p ~/Library/Application\ Support/TextMate/Themes
cd ~/Library/Application\ Support/TextMate/Themes
curl -O https://raw.github.com/ChrisKempson/TextMate-Tomorrow-Theme/master/Tomorrow-Night-Eighties.tmTheme
curl -O https://raw.github.com/ChrisKempson/TextMate-Tomorrow-Theme/master/Tomorrow-Night-Blue.tmTheme
curl -O https://raw.github.com/ChrisKempson/TextMate-Tomorrow-Theme/master/Tomorrow-Night-Bright.tmTheme
curl -O https://raw.github.com/ChrisKempson/TextMate-Tomorrow-Theme/d89f6f5c55b10443fc54d5918b1ea4d9d12f2290/Tomorrow-Night.tmTheme
curl -O http://deepend.com/mdiolosa/Bespin.tmTheme
curl -O https://raw.github.com/s2k/Close-to-the-Sea/master/close_to_the_sea.tmTheme
curl -O http://gngrwzrd.com/downloads/GlitterBomb.tmTheme
curl -O http://dl.dropbox.com/u/127665/Merbivore.tmTheme
curl -O http://dl.dropbox.com/u/127665/Merbivore%20Soft.tmTheme
osascript -e 'tell app "TextMate" to reload bundles'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment