Skip to content

Instantly share code, notes, and snippets.

@pedrofelipe
Last active August 29, 2015 14:04
Show Gist options
  • Save pedrofelipe/f61b6c6d3c08f4925b75 to your computer and use it in GitHub Desktop.
Save pedrofelipe/f61b6c6d3c08f4925b75 to your computer and use it in GitHub Desktop.
Setting up my environment (OS X)
// set tomorrow night theme (terminal)
https://raw.githubusercontent.com/chriskempson/tomorrow-theme/master/OS%20X%20Terminal/Tomorrow%20Night.terminal
// install oh-my-zsh
curl -L http://install.ohmyz.sh | sh
// install homebrew
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
brew update
brew doctor
export PATH="/usr/local/bin:$PATH"
// install node.js
http://nodejs.org/dist/v0.10.30/node-v0.10.30.pkg
sudo npm update -g
// install yeoman, cordova/phonegap and ionic framework
sudo npm install -g yo cordova ionic
// install web app generator (bootstrap + sass)
sudo npm install -g generator-webapp
// install compass
gem uninstall sass
gem install sass --no-ri --no-rdoc
gem install compass --no-ri --no-rdoc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment