Skip to content

Instantly share code, notes, and snippets.

@abecko
Last active August 29, 2015 13:56
Show Gist options
  • Save abecko/9025938 to your computer and use it in GitHub Desktop.
Save abecko/9025938 to your computer and use it in GitHub Desktop.

#Apps

##iTerm

###Post install

https://github.com/mbadolato/iTerm2-Color-Schemes/blob/master/schemes/Espresso.itermcolors

A 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 --install

If you see:

/Applications/Xcode.app/Contents/Developer

full 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/CommandLineTools

Verify 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 git

Check 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 [email protected]
$ 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 -v

Use bash $ gem update --system to upgrade the Ruby gem manager if necessary.

Upadete gems:

$ gem update

Install 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment