Created
February 13, 2022 16:42
-
-
Save ernestkamara/9694e61c371826d99b1ca02be475005c 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
Developer setup guid | |
https://www.stuartellis.name/articles/mac-setup/ | |
# Install Xcode | |
xcode-select --install | |
# Install and update Homebrew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
### Verify Homebrew installation | |
brew doctor | |
To update the index of available packages, run this command in a terminal window: | |
brew update | |
### Install Bash/ZSH/oh-my-zsh | |
$ sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
# Enabling Auto Completion of Commands | |
autoload bashcompinit && bashcompinit | |
# Install & configure git | |
brew install git | |
git config --global user.name "Your Name" | |
git config --global user.email "[email protected]" | |
git config --global color.ui auto | |
### Install Dev apps via Homebrew Cask | |
- Google Chrome | |
brew install --cask firefox | |
- Postman | |
brew install --cask postman | |
- Android studio | |
brew install --cask android-studio | |
- iTerm2 | |
brew install --cask iterm2 | |
- Slack | |
brew install --cask slack | |
- VS Code | |
brew install --cask visual-studio-code | |
- Sublime | |
brew install --cask sublime | |
- Zoom | |
brew install --cask zoom | |
- Outlook | |
brew install --cask microsoft-outlook | |
- Grammerly | |
brew install --cask grammarly | |
- Jetbrains Toolbox | |
brew install --cask jetbrains-toolbox | |
- MenuCalendarClock | |
brew install --cask menucalendarclock-ical |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment