What is Common Tools use for MacOs developer

1. Homebrew

https://brew.sh​​

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
// Adding this line into .zshrc
eval $(/opt/homebrew/bin/brew shellenv)

2. Docker Desktop

brew install --cask docker

3. Node Management

brew install nvm

4. MongoDB Compass

brew install --cask mongodb-compass

5. zsh

brew install zsh

6. Oh my zsh

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Enabling Plugins (zsh-autosuggestions & zsh-syntax-highlighting):

git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting

Open ~/.zshrc find and replace plugins=(git) -> plugins=(git zsh-autosuggestions zsh-syntax-highlighting)

7. Fonts

brew tap homebrew/cask-fonts
brew install --cask font-hack-nerd-font

8. powerlevel10k

https://github.com/romkatv/powerlevel10k?ref=morioh.com&utm_source=morioh.com#meslo-nerd-font-patched-for-powerlevel10k

9. Iterm2

brew install --cask iterm2