Last active
March 6, 2018 18:06
-
-
Save autodidacticon/58937e7efe73a625c536755df70db89b to your computer and use it in GitHub Desktop.
atlas_setup.sh
This file contains 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 | |
#install Xcode CLT | |
xcode-select --install | |
# install Homebrew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# install 'brew bundle' | |
brew tap homebrew/bundle | |
# get Atlas Brewfile | |
curl https://gist.githubusercontent.com/autodidacticon/987ebcdd774fa31a854beed96d1d033b/raw/a49be0581008fd6dc0cdc797c688460614353e1e/Brewfile > Brewfile | |
# install stuff | |
brew bundle -v | |
# install oh-my-zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# get atlas base .zshrc | |
curl https://gist.githubusercontent.com/autodidacticon/be536bdbe4f1a4ddd8dc1a49ea451a85/raw/2459ecb352de8274aaeed79a3b10368628569533/.zshrc > ~/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment