先安装zsh命令
yum install zsh -y
使用oh-my-zsh配置zsh
oh-my-zsh是大佬封装好的zsh配置,直接用就完事了。
首先将项目down到本地的~/.oh-my-zsh中
git clone https://ghproxy.com/https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
使用模板替换,zsh自带的配置文件
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
让新的配置文件生效
source ~/.zshrc
添加插件
oh-my-zsh 的自带插件都储存在~/.oh-my-zsh/plugins 目录中,如果你希望安装一个插件,可以在 “~/.zshrc” 的 plugins=(xxx xxx …) 这一行里加入插件名称
这里我们配置两个第三方插件,语法高亮和命令提示插件
语法高亮
git clone https://ghproxy.com/https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh}/plugins/zsh-syntax-highlighting
命令提示
git clone https://ghproxy.com/https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh}/plugins/zsh-autosuggestions
然后修改.zshrc
plugins=(git zsh-syntax-highlighting zsh-autosuggestions)
再让配置文件生效,效果如下:
source ~/.zshrc
查看系统bash列表
cat /etc/shells
切换默认bash
chsh -s /bin/zsh
查看环境变量
echo $SHELL
评论区