install zsh
sudo apt install zsh
install oh-my-zsh
Oh-my-zsh is a delightful,open source,community-driven framework for managing your Zsh configuration.It comes bundled with thousands of helpful functions,helps,themes,and a few thing that make you shout…
The command of installing oh-my-zsh as follows:
sudo apt install git
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
```
### install incr auto-completion plug-in
```linux
sudo apt install vim
wget http://mimosa-pudica.net/src/incr-0.2.zsh
sudo mkdir ~/.oh-my-zsh/plugins/incr/
sudo mv incr-0.2.zsh ~/.oh-my-zsh/plugins/incr/incr-0.2.zsh
sudo vim ~/.zshrc
#Add at the end of the text
source ~/.oh-my-zsh/plugins/incr/incr*.zsh
#Save the configuration and exit
:!x
#Update the configuration
source ~/.zshrc
Change agnoster‘s theme
#install font
sudo apt install fonts-powerline
#change configuration of zsh
vim ~/.zshrc
#modify ZSH_THEME="agnoster"
#save and exit
source ~/.zshrc