Last active
January 28, 2016 17:12
-
-
Save neochief/fc96a28e4dc1c4bdfcd5 to your computer and use it in GitHub Desktop.
OSX
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
#/bin/bash | |
# Install xcode command line tools. | |
xcode-select --install | |
sudo xcrun cc | |
# ZSH | |
curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh | |
# Homebrew | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Homebrew packages | |
brew install \ | |
tree \ | |
node \ | |
ssh-copy-id \ | |
wget \ | |
jpegoptim \ | |
pngcrush \ | |
colordiff \ | |
imagemagick \ | |
graphicsmagick \ | |
ack | |
# Web dev packages | |
brew install \ | |
dnsmasq \ | |
nginx \ | |
mariadb \ | |
redis \ | |
memcached \ | |
libmemcached | |
# Other software | |
## add support for fonts | |
brew tap caskroom/fonts | |
## add dev/beta versions | |
brew tap caskroom/versions | |
## install mac apps & fonts | |
brew cask install \ | |
adobe-creative-cloud \ | |
sublime-text-dev \ | |
virtualbox \ | |
google-chrome \ | |
firefox \ | |
iterm2-beta \ | |
sequel-pro \ | |
imageoptim \ | |
imagealpha \ | |
xquartz \ | |
vagrant \ | |
phpstorm \ | |
intellij-idea-ce \ | |
qbittorrent \ | |
dropbox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment