Skip to content

Instantly share code, notes, and snippets.

@ernestkamara
Created February 13, 2022 16:42
Show Gist options
  • Save ernestkamara/9694e61c371826d99b1ca02be475005c to your computer and use it in GitHub Desktop.
Save ernestkamara/9694e61c371826d99b1ca02be475005c to your computer and use it in GitHub Desktop.
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 "you@your-domain.com"
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