Last active
December 13, 2020 23:37
-
-
Save RohanBhanderi/8ba5b98abbf90aded86580851d91b0d7 to your computer and use it in GitHub Desktop.
Mac OS Setup
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
# install xcode tools | |
xcode-select --install | |
# install homebrew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" | |
brew update | |
# update iterm2 settings, ohmyzsh | |
brew install --cask iterm2 | |
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
# install latest git | |
brew install git | |
# install nvm/node | |
brew install nvm | |
nvm install stable | |
# setup devlopment directory | |
mkdir ~/dev | |
# install vs-code | |
brew install --cask visual-studio-code | |
# update vscode settings | |
# install Brave browser | |
brew install --cask brave-browser |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment