-
-
Save BronsonQuick/697dff5d61475634c0ae to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
# (not really -- run these commands by hand & pay attention to the comments) | |
# Homebrew: The missing package manager for OS X | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Git | |
brew install git | |
git config --global --add merge.ff false | |
# Alfred: Loads of app-launching, file-searching goodness | |
brew cask install alfred | |
# Dropbox: Your stuff, anywhere | |
brew cask install dropbox | |
## Manaually install 1Password 4: Have You Ever Forgot a Password? | |
# VirtualBox: Powerful x86 and AMD64/Intel64 virtualization | |
brew cask install virtualbox | |
# Vagrant: Development environments made easy | |
brew cask install vagrant | |
vagrant plugin install vagrant-hostsupdater | |
vagrant plugin install vagrant-triggers | |
mkdir ~/vagrants | |
# Browsers | |
brew cask install google-chrome | |
brew cask install firefox | |
# PHPStorm: PHP IDE that goes beyond the language | |
brew cask install phpstorm | |
# Versions: Mac Subversion Client (SVN) | |
brew cask install versions | |
# Transmit: The #1 Mac OS X FTP client | |
brew cask install transmit | |
# Bartender: Organize your menu bar apps | |
brew cask install bartender | |
# Skype: Free internet calls and online cheap calls to phones | |
brew cask install skype |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment