Last active
June 3, 2019 19:46
-
-
Save kaysiz/178e18154dc153a18287593b29c2f6c9 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 | |
| # install Oh My Zsh | |
| sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
| source ~/.zshrc | |
| # install brew | |
| sh -c "$(curl -fsSL https://raw.githubusercontent.com/mi-ndlovu/WTC-HomeBrew/master/install.sh)" | |
| # install neovim | |
| brew install neovim | |
| # install spacevim | |
| curl -sLf https://spacevim.org/install.sh | bash | |
| # Install NVM (Node version manager) | |
| curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash | |
| source ~/.zshrc | |
| # install LTS version of Node | |
| nvm install 10.15.0 | |
| # install Mongodb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment