Skip to content

Instantly share code, notes, and snippets.

@tysonwolker
Last active August 29, 2015 14:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tysonwolker/1f961835e26a2da5d875 to your computer and use it in GitHub Desktop.
Save tysonwolker/1f961835e26a2da5d875 to your computer and use it in GitHub Desktop.
# Install HomeBrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
# Gems
gems=(
lunchy
compass
cocoapods
)
echo "installing gems..."
sudo gem install ${gems[@]}
echo "installing dev tools..."
# Apps and utils
apps=(
caskroom/cask/brew-cask
coreutils
findutils
bash
mongodb
go
postgres
gpm
python
)
brew install ${apps[@]}
# Install more recent versions of some OS X tools
brew tap homebrew/dupes
brew install homebrew/dupes/grep
# Apps
caskApps=(
caskroom/homebrew-versions/java6
alfred
dropbox
logitech-gaming-software
google-chrome
screenflick
webstorm
steam
skype
google-drive
google-hangouts
google-plus-auto-backup
vlc
pycharm
evernote
slack
firefox
seil
vagrant
arq
flash
iterm2
virtualbox
flux
mailbox
qlstephen
sketch
vlc
skype
transmission
the-unarchiver
music-manager
unetbootin
ipvanish-vpn
sourcetree
0xdbe-eap
)
# Install apps to /Applications
# Default is: /Users/$user/Applications
echo "installing apps..."
brew cask install --appdir="/Applications" ${caskApps[@]}
# Vim Tools
echo "installing vim tools"
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
pip install --user git+git://github.com/powerline/powerline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment