多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### 安装zsh sudo apt-get install zsh ### 切换zsh chsh -s /bin/zsh ### 安装oh-my-zsh git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh ### 复制 cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc ### 高亮插件 git clone https://gitee.com/xiaoqqya/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting git clone https://gitee.com/renkx/zsh-autosuggestions.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions ### 修改.zshrc vim .zshrc plugins(git zsh-autosuggestions zsh-syntax-highlighting ) ### 配置生效 source ~/.zshrc