#Apps
##iTerm
###Post install
https://github.com/mbadolato/iTerm2-Color-Schemes/blob/master/schemes/Espresso.itermcolorsA set of iTerm theme
Launch iTerm 2
Type cmd + i
Navigate to Colors tab
Click on Load Presets
Click on Import
Select the .itermcolors file of the scheme you'd like to use
Click on Load Presets and choose a color scheme##Sublime Text 2
###Post install
A set of Sublime Text theme: Spacegray Eighties
https://github.com/kkga/spacegray##Xcode
###Install
Is Xcode Already Installed?
$ xcode-select --installIf you see:
/Applications/Xcode.app/Contents/Developerfull Xcode package is already installed.
##Command Line Tools
OS X Mavericks will alert you when you enter a command in the terminal that requires Xcode Command Line Tools.
For example, you can enter $ bash gcc.
Verify that you’ve successfully installed Xcode Command Line Tools:
$ xcode-select -p
/Library/Developer/CommandLineToolsVerify that gcc is installed:
$ gcc --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
Target: x86_64-apple-darwin13.0.0
Thread model: posix##ZSH (oh-my-zsh)
###Install
$ curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh##Homebrew
###Install
$ ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"###Post install
Add Homebrews binary path to the front of the $PATH
$ echo 'export PATH=/usr/local/bin:$PATH' >> ~/.zshrc
$ brew doctor
$ brew update###Packages
$ brew install mc tree wget ImageMagick ssh-copy-id geoip##GIT
###Install
$ brew install gitCheck that Git is installed:
$ git --version
git version 1.8.3.4 (Apple Git-47)###Post Install
$ git config -l --global
fatal: unable to read config file '/Users/.../.gitconfig': No such file or directory
$ git config --global user.name "Your Real Name"
$ git config --global user.email me@example.com
$ git config --global core.autocrlf input
$ git config --global core.editor "subl -w"
$ git config --global color.ui true##RVM
###Install
$ \curl -sSL https://get.rvm.io | bash -s stable###Post Install
$ echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.zshrc
$ rvm requirements$ rvm get stable --autolibs=enable
$ rvm install ruby
$ ruby -v
$ rvm --default use ruby-X.X.X##Gem Manager
Check the installed gem manager version:
$ gem -vUse bash $ gem update --system to upgrade the Ruby gem manager if necessary.
Upadete gems:
$ gem updateInstall gems:
sudo gem install sass
sudo gem install compass --pre
sudo gem install susy
sudo gem install breakpoint##NPM
###Install
$ brew install node###Packages
$ npm install -g grunt-cli