1.下载执行脚本(国内gitee镜像)
wget https://gitee.com/hao-qirui/oh-my-zsh-install.sh.git
2.直接执行
sudo sh install.sh
如果终端出现箭头表示安装成功,或者zsh --version
3.安装常用的几个插件
这里是插件wiki
国内还在更新的镜像仓库
常用的有zsh-syntax-highlighting zsh-autosuggestions
vscode(vs file可以用vscode直接打开file文件) sublime(同理)等
先切换到~/.oh-my-zsh/custom/plugins目录里
然后git clone这些插件,这里借用别人的源,有失效可以自己去上面的镜像仓库找然后移动到插件目录里
git clone https://gitee.com/asddfdf/zsh-syntax-highlighting.git
git clone https://gitee.com/chenweizhen/zsh-autosuggestions.git
4.打开~/.zshrc文件修改
找到文件里的plugins修改
plugins=(
git
sublime
vscode
zsh-autosuggestions
zsh-syntax-highlighting
)
5.刷新终端配置
source ~/.zshrc
标签:插件,git,oh,my,gitee,zsh
From: https://www.cnblogs.com/yetianyun/p/17252098.html