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
if [ ! -f "`which brew`" ]; then | |
echo 'Setting up homebrew ...'; | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
fi | |
if [ ! -d ~/"Library/Application Support/Sublime Text 3/Packages" ]; then | |
echo 'Setting up Sublime ...'; | |
brew install caskroom/cask/brew-cask | |
brew tap caskroom/versions | |
brew cask install sublime-text3 |