Skip to content

Instantly share code, notes, and snippets.

@jesselcampbell
Forked from corygibbons/setup.sh
Last active August 8, 2017 21:29
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 jesselcampbell/ec000a27c5ddece523df3c31556ce683 to your computer and use it in GitHub Desktop.
Save jesselcampbell/ec000a27c5ddece523df3c31556ce683 to your computer and use it in GitHub Desktop.
Homebrew install script
#!/bin/sh
# Install Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install zsh, git, Node and NPM
brew install zsh
brew install git
brew install node
brew install yarn
# Install Homebrew Dependencies
brew tap caskroom/cask
brew tap caskroom/fonts
brew tap corygibbons/homebrew-premium-fonts
# Install General Apps
brew cask install google-chrome
brew cask install slack
brew cask install spotify
brew cask install 1password
# Install Development Apps
brew cask install hyper
brew cask install atom
# Install Design Apps
brew cask install sketch
brew cask install adobe-creative-cloud
# Install Fonts
brew cask install font-lato
brew cask install font-open-sans
brew cask install font-roboto
brew cask install font-san-francisco
brew cask install font-operator-mono
# Install Atom Packages
apm install editorconfig
apm install language-babel
apm install linter
apm install linter-eslint
apm install prettier-atom
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment