ZSH
Install ZSH
sudo apt install zsh -y;
chsh -s $(which zsh);
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
source ~/.zshrc
Fonts
Install
pip3
:sudo apt-get install python3-pip
Install
powerline
usingpip3
:sudo pip3 install powerline-status
Install
powerline
fonts:sudo apt-get install fonts-powerline
Recommended themes
Set ZSH_THEME="theme-name"
in ~/.zshrc
for themes below:
bira
gnzh
refined
strug
ys
Plugins
...
plugins=(
git
sudo
zsh-autosuggestions
)
...
Last updated
Was this helpful?