Skip to content

Instantly share code, notes, and snippets.

@Jaace
Last active June 26, 2017 23:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jaace/1a3a9e3300419bbe57bb0ae19d16db1e to your computer and use it in GitHub Desktop.
Save Jaace/1a3a9e3300419bbe57bb0ae19d16db1e to your computer and use it in GitHub Desktop.
Homebrew and Homebrew Cask Bundle Install
#!/bin/sh
# Install Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Verify that Command Line Tools are installed.
xcode-select --install
brew install wget
brew install nvm
brew install composer
brew install yarn
# Install Homebrew Cask
brew tap caskroom/cask
# Non-cask brews
brew tap homebrew/homebrew-php
brew install php-version
brew install php71-intl
# Installing other PHP versions - see https://github.com/Homebrew/homebrew-php#usage
# Environment Related
brew cask install docker
brew cask install kitematic
brew cask install vagrant
brew cask install virtualbox
# Editors
brew cask install atom
brew cask install iterm2-beta
brew cask install phpstorm
brew cask install visual-studio-code
# Browsers
brew cask install firefoxdeveloperedition
brew cask install google-chrome
brew cask install google-chrome-canary
brew cask install opera-developer
# Tools
brew cask install macdown
brew cask install sequel-pro
brew cask install sketch
brew cask install slack
brew cask install tower
brew cask install transmit
# Non-dev related
brew cask install 1password
brew cask install amazon-drive
brew cask install dropbox
brew cask install private-eye
brew cask install screenhero
brew cask install spotify
brew cask install zoomus
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment