Skip to content

Instantly share code, notes, and snippets.

@edymerchk
Last active August 29, 2015 14:04
Show Gist options
  • Save edymerchk/ee21c1fad801013538e7 to your computer and use it in GitHub Desktop.
Save edymerchk/ee21c1fad801013538e7 to your computer and use it in GitHub Desktop.
Mac Installation
0. iTerm2
`http://iterm2.com/`
1. Oh my ZSH
https://github.com/robbyrussell/oh-my-zsh
2. HomwBrew
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
3. Rbenv and ruby-build
brew install rbenv ruby-build
4. Add rbenv to profiles
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.profile
echo 'eval "$(rbenv init -)"' >> ~/.profile
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.zshrc
echo 'eval "$(rbenv init -)"' >> ~/.zshrc
5. Install ruby
rbenv install 1.9.3-p374
6. Sublime text
http://www.sublimetext.com/3
7. Postgres
brew install postgres
ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
8. Node
brew install node
9. Redis
brew install redis
ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment