Update : 2023-05-16
Operating System : MacOS Ventura
Terminal Client : Tabby
Text Editor : VSCode
Icons : MesloLGS NF
- zsh : More intuitive than bash
- bat : Better
cat
- btop : Better
htop
- cheat : Better
man
, all your cheatsheet in your terminal - duf : Better
df -h
with graphics (Thx @Lucroz94) - exa : Improving the
ls
command - ncdu : Display your storage simply and graphically
- oh-my-zsh : Making zsh pretty
- powerlever10k : Customize your command prompt to perfection
- zsh-autosuggestions : Like fish, add auto-completion
- zsh-syntax-highlighting : Like fish too, add highlighting
brew install romkatv/powerlevel10k/powerlevel10k
echo "source $(brew --prefix)/opt/powerlevel10k/powerlevel10k.zsh-theme" >> ~/.zshrc
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions
echo "source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh" >> ~/.zshrc
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.zsh/zsh-syntax-highlighting
echo "source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ~/.zshrc
brew install exa
brew install bat
brew install btop
brew install ncdu
brew install duf
brew install fd
brew install cheat
zsh -c "$(curl -s https://raw.githubusercontent.com/Aiola13/zsh-profile/main/macos_install_utils.zsh)"