Created
September 4, 2017 23:30
-
-
Save matthewberryman/42681d0c367d5419d0709657d5f6557a to your computer and use it in GitHub Desktop.
setup_nice_environment_on_mac.sh
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
| #!/usr/bin/env bash | |
| brew upgrade | |
| brew cleanup | |
| brew install zsh git | |
| cd ~ | |
| git clone https://github.com/matthewberryman/oh-my-zsh .oh-my-zsh && ln -s .oh-my-zsh/templates/zshrc.mac . | |
| git clone https://github.com/creationix/nvm .nvm | |
| echo "/usr/local/bin/zsh" | sudo tee -a /etc/shells > /dev/null | |
| sudo chsh -s /usr/local/bin/zsh $USER | |
| # Then close terminal and re-open and run | |
| nvm install v8.4.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment