This is the terminal configuration I use for my devices. If you like, you can use this as well 😌.
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc
git clone https://github.com/hasathcharu/my-terminal ~/my-terminal
Change the following line at the end of .zshrc
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
to the one below
[[ ! -f ~/my-terminal/.p10k.zsh ]] || source ~/my-terminal/.p10k.zsh
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
Change the following line in .zshrc
plugins=(git)
to the one below
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
git config --global alias.ac '!git add -A && git commit -m'