安装

安装 git 和 zsh

1
sudo apt update && sudo apt install git zsh -y

安装 oh-my-zsh

1
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

安装 zsh-autosuggestionszsh-syntax-highlighting~/.oh-my-zsh/custom/plugins

1
2
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting

修改 .zshrc

1
2
3
4
5
6
plugins=(
zsh-autosuggestions
zsh-syntax-highlighting
git
extract
)