Here's a quick note documenting how I recently set up my Mac for development use.
1. Install Warp Terminal
Warp is a modern, fast terminal that can replace the default macOS Terminal. You can download and install it from warp.dev.
2. Install Homebrew
Homebrew is an essential package manager for macOS that simplifies software installation.
Installation Steps:
-
Open Terminal and run:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
-
Add Homebrew to your PATH:
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zshrc source ~/.zshrc
-
Verify the installation:
brew doctor
3. Install Essential Packages
Using Homebrew, install commonly used tools like Git:
brew install git
4. Set Up Zsh and Oh My Zsh
Zsh is the default shell on macOS, and Oh My Zsh provides powerful customization options.
Steps to Install Oh My Zsh:
-
Run the installation command:
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
-
Configure recommended plugins in
~/.zshrc
:plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
-
Install the plugins:
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions git clone https://github.com/zsh-users/zsh-syntax-highlighting ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
-
Activate the plugins:
source ~/.zshrc
Install Powerlevel10k Theme
-
Clone the Powerlevel10k repository:
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k
-
Set the theme in
~/.zshrc
:ZSH_THEME="powerlevel10k/powerlevel10k"
-
Reload your shell:
source ~/.zshrc
5. Set Up Git
Git is essential for version control. Here’s how to configure it:
-
Set up your Git credentials:
git config --global user.name "Your Name" git config --global user.email "your.email@example.com" git config --global init.defaultBranch main
-
Generate an SSH key for GitHub:
ssh-keygen -t ed25519 -C "your.email@example.com"
-
Add the key to GitHub:
pbcopy < ~/.ssh/id_ed25519.pub
Paste the copied key into your GitHub account under SSH and GPG keys.
6. Install a Code Editor
Consider using Cursor, an AI-powered code editor built on Visual Studio Code’s foundation. It offers robust AI features for development and is an excellent alternative to VS Code.
7. Set Up Development Languages
Python
- Install
pyenv
to manage Python versions:brew install pyenv pyenv install 3.x.x # Replace with your desired version pyenv global 3.x.x
Node.js
- Use
nvm
to manage Node.js versions:brew install nvm mkdir ~/.nvm echo 'export NVM_DIR="$HOME/.nvm"' >> ~/.zshrc echo '[ -s "$(brew --prefix nvm)/nvm.sh" ] && \. "$(brew --prefix nvm)/nvm.sh"' >> ~/.zshrc source ~/.zshrc nvm install --lts