$ sudo apt install zsh
$ sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
ZSH_THEME="agnoster"
$ sudo apt-get install fonts-powerline
$ git clone https://github.com/powerline/fonts.git
$ ./fonts/install.sh
Note: Change font in the terminal setting.
$ git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
$ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
Note: zsh-syntax-highlighting must be the last one.
$ source ~/.zshrc
$ chsh -s $(which zsh)
Note: Need to log out and log in again.