Boost your terminal experience with Oh My Zsh π
Follow the steps below to install and configure it with useful plugins.
sudo apt install curl
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
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
nano ~/.zshrc
- Find this line:
plugins=(git)
- Replace it with:
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
- Save & exit, then apply changes:
source ~/.zshrc
For a sleek and customizable terminal look β¨:
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
Then edit .zshrc
and set the theme:
ZSH_THEME="powerlevel10k/powerlevel10k"
Apply changes:
source ~/.zshrc
When you restart the terminal, Powerlevel10k will guide you through a setup wizard.
β Done! Enjoy your supercharged terminal β‘
For Linux installing curl may be needed.