环境因为一些国内不能访问 github,所以本教程使用的 gitee 下载源文件。
Centos7 最小化安装模式
安装软件包yum -y install zsh git
更改默认终端
chsh -s /bin/zsh
配置 oh-my-zsh这时候打开终端软件,应该就会默认进入 zsh 了。
- 从 gitee 拉取 oh-my-zsh
国内镜像源(每日更新一次)
git clone https://gitee.com/mirrors/oh-my-zsh.git ~/.oh-my-zsh
- 默认配置
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
安装插件
zsh-syntax-highlighting 命令高亮插件
git clone https://gitee.com/dawnwords/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
zsh-autosuggestions 自动建议补全
git clone https://gitee.com/lhaisu/zsh-autosuggestions.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
安装 autojump 目录跳转
git clone https://gitee.com/gentlecp/autojump.git
cd autojump
./install.py
执行成功后将出现的代码复制到 .zshrc 末尾处,可能有少许差异,不生效则需要以下面模版进行修改。
vim ~/.zshrc
[[ -s /root/.autojump/etc/profile.d/autojump.sh ]] && . /root/.autojump/etc/profile.d/autojump.sh
插件配置
同样是打开.zshrc文件,找到plugins=(git),在这里增加自己想要的插件即可,多个插件名称之间使用空格或者换行分开(不能使用逗号)。vim ~/.zshrc
plugins=(
git
sudo
zsh-autosuggestions
zsh-syntax-highlighting
autojump
)
每次修改完 .zshrc 都需要
source ~./zshrc