gitbashzsh_0">Windows通过git-bash安装zsh
gitbash_2">1、安装git-bash
官网下载安装
windowszsh_5">2、下载windows版zsh
百度网盘下载 提取码: s84k
官网下载安装
- 注意官网下载需要解压两次
- 将解压两次后得到的文件,放在git根目录下
zsh_18">3、配置zsh
bashrczsh_19">1. 配置.bashrc默认启动zsh
bash"># 配置默认启动zsh
vim ~/.bashrc
if [ -t 1 ]; thenexec zsh
fi
zshwindows_34">2. 配置oh-my-zsh(windows下加载这个会卡顿一两秒)
bash"># 下面仓库都是我fork的gitee地址
# 安装oh-my-zsh
sh -c "$(curl -fsSL https://gitee.com/yyl-code/ohmyzsh/master/tools/install.sh)"
# 安装命令行提示和高亮
cd ~/.oh-my-zsh/custom/plugins
git clone https://gitee.com/yyl-code/zsh-autosuggestions.git
git clone https://gitee.com/yyl-code/zsh-syntax-highlighting.git
bash"># .zshrc插件里面加入这两个
vim ~/.zshrcplugins=(git zsh-autosuggestions zsh-syntax-highlighting )