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 Powerline

  1. Install pip3:

    sudo apt-get install python3-pip
  2. Install powerline using pip3:

    sudo pip3 install powerline-status
  3. Install powerline fonts:

    sudo apt-get install fonts-powerline

Set ZSH_THEME="theme-name" in ~/.zshrc for themes below:

  • bira

  • gnzh

  • refined

  • strug

  • ys

Plugins

...
    
    plugins=(
      git
      sudo
      zsh-autosuggestions
    )
    
...

Last updated