1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| >> sudo apt install zsh
>> sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
>> git clone https://gitee.com/mirrors/oh-my-zsh.git ~/.oh-my-zsh >> cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
>> zsh
>> vim ~/.zshrc plugins=(git z zsh-autosuggestions extract web-search zsh-syntax-highlighting colored-man-pages history)
>> 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
>> git clone https://gitee.com/sasukeZhou/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions >> git clone https://gitee.com/pankla/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
>> source ~/.zshrc
|