After a long time I finally switched to a new MacBook Pro. Here is the list of things which I use as a developer:-
The first thing to install on M1 Pro machine is rosetta
softwareupdate --install-rosetta
Install command line tools for Xcode
xcode-select --install
Next would be my favourite package manager Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
I have been using iTerm since years and just cannot live without it.
brew install --cask iterm2
Install zsh and oh-my-zsh
brew install zsh zsh-completions
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
Dot Files are available on my Github Repository
https://github.com/samaybhavsar/dotfiles
For those who work a lot on terminal can refer to Paul‘s repository. It is much more exhaustive.
https://github.com/paulirish/dotfiles
Install PHP 8
brew install php@8.0
brew link php
Leave a Reply