Skip to content

Instantly share code, notes, and snippets.

@jpotts18
Last active August 29, 2015 14:19
Show Gist options
  • Save jpotts18/5542d148447d92fd1612 to your computer and use it in GitHub Desktop.
Save jpotts18/5542d148447d92fd1612 to your computer and use it in GitHub Desktop.
Brew Cask Setup Script
echo "Installing brew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Installing brew requires command line tools and prompts user to install them
# Vundle
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
brew install the_silver_searcher
echo "Installing brew cask..."
brew install caskroom/cask/brew-cask
# Brew Packages
brew install wget
brew install zsh
brew install node
brew install tree
# Installing Java
# run java -v
# Download JDK 1.7
# Go through Installer
# brew install android-sdk
# brew install r
# brew install postgres
# brew install mysql
# brew install sphinx --mysql --pgsql
# Casks
# Note: First Cask asks for permissions cask install
# Note: Casks will be installed by default in your ~/Applications, if you want them to be globally accessible you will need to add the --appdir="/Applications" flag. i.e. brew cask install --appdir="Applications" google-chrome.
# Configuration
# brew cask install bettertouchtool
# brew cask install android-file-transfer
# brew cask install dropbox
# brew cask install google-drive
# brew cask install google-earth
# Communication
# brew cask install --appdir="/Applications" google-chrome # Make program globally accessible to all users on system
# brew cask install slack
# Design
# brew cask install balsamiq-mockups
# Development
# brew cask install kitematic
# brew cask install iterm2
# brew cask install mysqlworkbench
# brew cask fetch heroku-toolbelt
# Databases
# brew cask install postgres
# brew cask install pg-commander
# brew cask install sequel-pro
# brew cask install sqlitestudio
# Text Editors
# brew tap caskroom/versions
# brew cask install sublime-text3
# brew cask install atom
# IDE
# brew cask install rstudio
# Source Code Tools
# brew cask install github
# brew cask install macdown
# brew cask install p4merge
# brew cask install sourcetree
# brew cask install tower
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment