I recently set up my MacBook Mini (2025, M4, 16GB RAM, 512GB).
Here's my essential toolkit and tweaks to get productive fast.
.zshrc
minimal for fast startup)Create a folder to keep all projects organized:
mkdir ~/projects
Speed up keyboard repeat rate:
defaults write -g InitialKeyRepeat -int 15
defaults write -g KeyRepeat -int 1
Disable auto-correct in terminal:
defaults write -g NSAutomaticSpellingCorrectionEnabled -bool false
.windsurfrules
file inside your repoXcode Command Line Tools (needed for Git, compilers, etc.)
xcode-select --install
Git Identity
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
SSH Key for GitHub
ssh-keygen -t ed25519 -C "[email protected]"
pbcopy < ~/.ssh/id_ed25519.pub
zsh Aliases for Productivity → Follow this article to add helpful shortcuts and aliases