Zsh

Install zsh

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

Step2 Install plugins and theme

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
vim ~/.zshrc

plugins=(git zsh-autosuggestions zsh-syntax-highlighting)

Install Theme

git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k
#Set ZSH_THEME=powerlevel10k/powerlevel10k in your ~/.zshrc.

ZSH_THEME="powerlevel10k/powerlevel10k"

Re-load configuration

source ~/.zshrc

Last updated

Was this helpful?