Last active
November 19, 2018 05:30
-
-
Save nagakputtagunta/9dda786e890319354ba7 to your computer and use it in GitHub Desktop.
A set of Homebrew and Cask commands to install my core set of applications on a clean install of OS X
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 | |
# install homebrew | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# verify homebrew installation | |
# TODO handle output to figure out whether to processed further | |
brew doctor | |
# caskroom | |
brew install caskroom/cask/brew-cask | |
# alfred | |
brew cask install alfred | |
brew cask alfred link | |
# textmate | |
brew cask install textmate | |
# atom | |
brew cask install atom | |
# iterm2 | |
brew cask install iterm2 | |
# google chrome | |
brew cask install google-chrome | |
# sequel pro | |
brew cask install sequel-pro | |
# cyberduck | |
brew cask install cyberduck | |
# spotify | |
brew cask install spotify | |
# java | |
brew cask install java | |
# intellij idea | |
brew cask install intellij-idea | |
# source tree | |
brew cask install sourcetree | |
# gradle | |
brew install gradle | |
# maven | |
brew install maven | |
# ant | |
brew install ant | |
# git | |
brew install git | |
# github | |
brew cask install github | |
# viscosity | |
brew cask install viscosity | |
# textmate bundle - gist | |
mkdir -p ~/Library/Application\ Support/Avian/Bundles | |
cd ~/Library/Application\ Support/Avian/Bundles | |
git clone git://github.com/hiltmon/Gist.tmbundle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment