Last active
September 23, 2020 16:14
-
-
Save CheezItMan/87737ba8eebec37c6932d3f6e25e4220 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 ohmyzsh | |
| sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
| # install homebrew | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" | |
| # install git | |
| brew install git | |
| # install browsers | |
| brew cask install google-chrome | |
| brew cask install firefox | |
| # Install Node, terminal-based JS | |
| brew install node | |
| # Java? | |
| brew cask install java | |
| # Install libre office as an alternative to MS office | |
| brew cask install libreoffice | |
| # install VS Code | |
| brew cask install visual-studio-code | |
| # Install Ruby | |
| brew install rbenv | |
| rbenv install 2.6.5 | |
| rbenv global 2.6.5 | |
| echo 'eval "$(rbenv init -)"' >> ~/.zshrc | |
| source ~/.zshrc | |
| gem pristine -a | |
| # install Rectangle for side-by-side terminal and Editor | |
| brew cask install rectangle | |
| # Install Rubymine | |
| brew cask install rubymine | |
| brew cask install jetbrains-toolbox | |
| # install Slack | |
| brew cask install slack |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If we wanted to roll this out I'd probably cut out some of the optional stuff like OhMyZsh (maybe ask for it?) and Java and LibreOffice and such.