Setup Zsh
Install Font
You can install from Nerd Font (opens in a new tab) repository. I use JetBrainsMono and size is 11
curl -OL https://github.com/ryanoasis/nerd-fonts/releases/latest/download/JetBrainsMono.tar.xztar -xf JetBrainsMono.tar.xzmv JetBrainsMono/* /usr/share/fontsfc-cache -f -vInstall Zsh
apt install zshChange Default Shell
chsh -s /usr/bin/zshRe-login and check.
echo $SHELLInstall ohmyzsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"Install powerlevel10k theme
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10kInstall autosuggestions plugin
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestionsInstall syntax-highlighting plugin
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlightingInstall fzf plugin
sudo apt install fzfInstall fzf-tab plugin
git clone https://github.com/Aloxaf/fzf-tab $ZSH_CUSTOM/plugins/fzf-tabInstall fast-syntax-highlighting
git clone https://github.com/zdharma-continuum/fast-syntax-highlighting.git $ZSH_CUSTOM/plugins/fast-syntax-highlightingLast updated on January 21, 2024