zsh & oh-my-zsh quickly beautify your Linux console

zsh install

apt install zsh

oh-my-zsh install

sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"

oh-my-zsh theme configuration

vim ~/.zshrc

Revise

ZSH_THEME

I choose

ZSH_THEME="bureau"

Effect

insert image description here
Add completion plugin
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

Edit the .zshrc file
plugins=(git zsh-autosuggestions)

insert image description here

Guess you like

Origin blog.csdn.net/dsfsdfrtjj/article/details/120516665
Recommended