安装zsh并更改默认终端

  1. 安装软件包
yum -y install zsh git
  1. 更改默认终端
chsh -s /bin/zsh

重新打开终端软件就默认进入zsh了

配置oh-my-zsh

  1. 从igt仓库中拉取oh-my-zsh
git clone https://gitee.com/mirrors/oh-my-zsh.git ~/.oh-my-zsh
  1. 默认配置
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc

安装高亮、自动补全插件

  1. 安装高亮插件:zsh-syntax-highlighting
git clone https://gitee.com/dawnwords/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
  1. 安装自动补全:zsh-autosuggestions
git clone https://gitee.com/lhaisu/zsh-autosuggestions.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

插件配置

打开.zshrc文件,找到plugins=(git),在这里增加自己想要的插件即可,多个插件名称之间使用空格或者换行分开(不能使用逗号)

vim ~/.zshrc
 plugins=(
    git
    sudo
    zsh-autosuggestions
    zsh-syntax-highlighting
    autojump
 )

每次修改完.zshrc都需要我们:

source ~/.zshrc

默认的zsh主题很丑,可以在配置文件里面更改默认自带的主题,可以修改

vim ~/.zshrc

找到ZSH_THEME,将其改为自己喜欢的主题,比如intheloop,或者agnoster,这两个比较好看。

刷新zsh配置文件
source ~/.zshrc

更多主题:https://github.com/ohmyzsh/ohmyzsh/wiki/Themes

按上面方法修改.zshrc文件中的ZSH_THEME参数即可

最后修改:2024 年 07 月 07 日
如果觉得我的文章对你有用,请随意赞赏