Last active
September 9, 2017 15:33
-
-
Save aidant/dddc9918c5eb24495309e9389d38c7f6 to your computer and use it in GitHub Desktop.
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/bash | |
sudo -v | |
if test ! $(which brew) | |
then | |
echo "Installing Homebrew..." | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
fi | |
brew update | |
brew tap caskroom/fonts | |
brew install nvm | |
brew install node | |
brew install docker docker-compose | |
brew install zsh zsh-completions | |
brew cleanup | |
curl -o - https://raw.githubusercontent.com/denysdovhan/spaceship-zsh-theme/master/install.zsh | zsh | |
brew cask install docker | |
brew cask install mongodb-compass | |
brew cask install atom | |
brew cask install iterm2 | |
brew cask install font-fira-code | |
brew cask install google-chrome | |
brew cask install discord | |
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
chsh -s $(which zsh) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment