-
-
Save ulfst/a3da1f8a3495bbf1343ae15124db137a to your computer and use it in GitHub Desktop.
Brew Install Automation
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/sh | |
xcode-select --install | |
# homebrew taps | |
brew tap caskroom/cask | |
brew tap caskroom/versions | |
brew tap homebrew/boneyard | |
brew tap caskroom/fonts | |
# Updated grep | |
brew tap homebrew/dupes | |
brew install grep | |
# Updated curl | |
brew install curl | |
brew link curl --force | |
# Updated bash | |
brew install bash | |
brew cask install font-inconsolata | |
brew cask install font-source-code-pro | |
# homebrew apps | |
brew install brew-cask | |
brew install git | |
brew install git-extras | |
brew install wget | |
# Updated python/pip | |
brew install python | |
pip install --upgrade setuptools | |
pip install --upgrade pip | |
# cask apps | |
brew cask install sublime-text3 | |
brew cask install android-file-transfer | |
brew cask install dropbox | |
brew cask install sketch | |
brew cask install iterm2 | |
brew cask install alfred | |
brew cask install google-chrome | |
brew cask install opera | |
brew cask install the-unarchiver | |
brew cask install cakebrew | |
brew cask install font-source-code-pro | |
brew cask install imageoptim | |
brew cask install firefox | |
# Install GNU core utilities (those that come with OS X are outdated) | |
brew install coreutils | |
# cask quick look plugins (https://github.com/sindresorhus/quick-look-plugins) | |
brew cask install qlcolorcode qlstephen qlmarkdown quicklook-json qlprettypatch quicklook-csv betterzipql suspicious-package | |
# verify | |
brew doctor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment