CentOS 7.9 安装 zsh 及 配置 Oh my zsh
我们在通过[Shell]操作linux终端时,配置、颜色区分、命令提示大都达不到我们预期的效果或者操作较为繁琐。
安装zsh并更改默认终端
1.安装软件包
yum -y install zsh git
2.更改默认终端
chsh -s /bin/zsh
这时候打开终端软件,应该就会默认进入 zsh 了。
配置oh-my-zsh
- 从igt仓库中拉取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文件,找到plugins=(git),在这里增加自己想要的插件即可,多个插件名称之间使用空格或者换行分开(不能使用逗号)
vim ~/.zshrc
plugins=(
git
sudo
zsh-autosuggestions
zsh-syntax-highlighting
autojump
)
每次修改完.zshrc都需要我们:
source ~./zshrc
默认的zsh主题很丑,可以在配置文件里面更改默认自带的主题,可以修改
vim ~/.zshrc
找到ZSH_THEME,将其改为自己喜欢的主题,比如maran,或者agnoster,这两个比较好看。
刷新zsh配置文件 source ~/.zshrc