Skip to content

Instantly share code, notes, and snippets.

@vaxinate
Created June 2, 2012 22:06
Show Gist options
  • Save vaxinate/2860145 to your computer and use it in GitHub Desktop.
Save vaxinate/2860145 to your computer and use it in GitHub Desktop.
INstall

.Apps

  • Google Chrome
  • The Unarchiver
  • OmniOutliner
  • Sublime Text 2
  • Arq

Install Homebrew

  • Install XCode
  • Install Java for Develoeprs Update
  • /usr/bin/ruby -e "$(/usr/bin/curl -fsSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)"
  • agree to xcodebuild terms

Install Ruby

  • brew install rbenv
  • brew install ruby-build
  • rbenv install ruby-1.9.3-p194 # check for newer version
  • echo 'eval "$(rbenv init -)"' >> .profile
  • reload terminal

Install Node.js

  • brew install node
  • curl http://npmjs.org/install.sh | sh

Install MongoDB

  • brew install mongo
  • mkdir -p ~/Library/LaunchAgents
  • cp /usr/local/Cellar/mongodb/2.0.5-x86_64/homebrew.mxcl.mongodb.plist ~/Library/LaunchAgents/
  • launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist

Install Redis

  • brew install redis
  • mkdir -p ~/Library/LaunchAgents
  • cp /usr/local/Cellar/redis/2.4.14/homebrew.mxcl.redis.plist ~/Library/LaunchAgents/
  • launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.redis.plist

Install Oh My Zsh

  • curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh

Install MacVim

  • brew isntall macvim
  • curl -Lo- https://bit.ly/janus-bootstrap | bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment