-
-
Save qwo/8be3b75fa5319a51f3dc to your computer and use it in GitHub Desktop.
setup your macbook very fast using homebrew, tools of the internet and scripts. all is borrowed
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 | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# homebrew-cask | |
brew tap phinze/homebrew-cask | |
brew install brew-cask | |
# development | |
brew cask install iterm2 | |
brew cask install source-tree | |
brew cask install virtualbox | |
brew cask install visual-studio-code | |
brew cask install postman | |
# tools | |
brew install docker | |
brew install docker-compose | |
brew install jq # reads json on cli | |
brew install wget | |
## install docker for mac | |
# browser | |
brew cask install firefox-aurora | |
brew cask install google-chrome | |
brew cask install google-chrome-canary | |
brew install git-extras | |
# other | |
brew cask install spectacle | |
brew cask install dropbox | |
brew cask install skype | |
brew cask install spotify | |
brew cask install bitbar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment