My Mac Setup 2025
When I got my new MacBook, I decided to set it up from scratch instead of migrating from my old machine. This gave me a chance to review and select the apps I installed, as I found that many old apps I had stopped using or no longer worked on an M4 Mac. While I still used my dotfiles and Brewfile to streamline the process, I took a more manual approach—commenting out unnecessary installs and selectively choosing what to bring over.
Here’s how I set up my Mac for an efficient and productive developer experience.
1. Installing Essentials with Homebrew
I rely on Homebrew as my package manager, but instead of blindly installing everything from my previous setup, I:
- Used on my old machine to generate a Brewfile which is saved in my dotfiles repo.
brew bundle dump
- Commented out tools I no longer needed.
- Ran selectively.
brew bundle install
This gave me a clean but optimised setup without unnecessary bloat.
Must-have CLI Tools
Some of my go-to command-line utilities:
- &
zsh
– My shell of choice, with plugins for auto-suggestions and syntax highlighting.oh-my-zsh
- – I manage my Node.js versions with nvm, keeping things flexible per project.
nvm
- – Of course, with signed commits configured.
git
- – GitHub CLI for faster interactions.
gh
2. Development Environment
I keep my development setup simple and efficient:
- Node.js via nvm – I avoid system-wide installs of Node and let handle versions per project.
nvm
- Docker – For containerised dev environments.
- VS Code – My IDE of choice, with my usual extensions (ESLint, Prettier, GitLens, etc.).
- Warp – Terminal of choice.
3. Productivity & Workflow Optimisations
Must-have Productivity Apps
These apps help me stay efficient:
- Raycast – A powerful launcher that replaces Spotlight.
- Rise – Helps me track work hours and breaks.
Mapping Raycast to Spotlight Shortcut
One major tweak I made this time was remapping Raycast to use Spotlight’s shortcut (Cmd + Space
4. Additional System Tweaks
Beyond installing software, I made some key system adjustments:
- Added spacers to the dock to split out the docked apps I use most often.
5. Lessons Learned & Final Thoughts
Rebuilding my Mac from scratch was worth it. It allowed me to rethink my tools, remove bloat, and refine my workflow. While my dotfiles and Brewfile gave me a solid starting point, selectively choosing what to install kept things cleaner.
If you’re setting up a new Mac, I’d recommend:
- Using to create a reference Brewfile.
brew bundle dump
- Installing tools manually where it makes sense.
- Remapping shortcuts like Spotlight to better alternatives like Raycast.
- Keeping your dev setup modular (e.g., using for Node versions).
nvm
Would love to hear how others optimise their Mac setups—what tools and tweaks do you use, reach out on X? 🚀