Created
August 22, 2012 20:06
-
-
Save pithyless/3428884 to your computer and use it in GitHub Desktop.
OSX Mountain Lion - Install Notes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Don't write to Disk on Sleep | |
sudo pmset -a hibernatemode 0 | |
# Install Developer Tools (no XCode) | |
# https://developer.apple.com/downloads/index.action# | |
# Install DropBox | |
# Install 1Password | |
# Install Homebrew | |
ruby <(curl -fsSk https://raw.github.com/mxcl/homebrew/go) | |
brew doctor | |
# Install git | |
brew install git | |
brew doctor | |
echo 'export PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH"' >> ~/.bash_profile | |
# ruby | |
brew install rbenv ruby-build rbenv-vars readline ctags | |
echo 'eval "$(rbenv init - --no-rehash)"' >> ~/.bash_profile | |
exec $SHELL -i # reload the shell | |
CONFIGURE_OPTS="--disable-install-doc --with-readline-dir=$(brew --prefix readline)" rbenv install 1.9.3-p194 | |
rbenv global 1.9.3-p194 | |
gem install bundler rbenv-rehash git-up hitch gem-browse gem-ctags cheat awesome_print pry | |
gem ctags | |
# shell | |
# 1. Install iterm2 | |
# 2. Setup iterm2 Solarized | |
# https://github.com/altercation/solarized/tree/master/iterm2-colors-solarized | |
# 3. Install anonymous pro font | |
# http://www.ms-studio.com/FontSales/anonymouspro.html | |
brew install wget | |
brew install zsh zsh-completions | |
sudo mv /etc/zshenv /etc/zprofile | |
# vim /etc/shells => add /usr/local/bin/zsh | |
chsh -s /usr/local/bin/zsh $USER | |
# Setup .dotfiles: https://github.com/pithyless/dotfiles | |
# MongoDB | |
brew install mongodb | |
# TODO: | |
brew install ack | |
brew install gettext | |
brew link gettext |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment