CentOS 7 下安装并配置 Zsh

2023年 1月 4日 27.4k 0

1. 安装 zsh

1
sudo yum install -y zsh

2. 安装 oh-my-zsh

1
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

建议将 Zsh 设置为默认的 Shell。

3. 安装插件

3.1 安装 autojump

1
sudo yum install -y epel-release
1
sudo yum install -y autojump-zsh

3.2 安装 zsh-autosuggestions

1
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

3.3 安装 zsh-syntax-highlighting

1
git clone git://github.com/zsh-users/zsh-syntax-highlighting $ZSH_CUSTOM/plugins/zsh-syntax-highlighting

4. 添加 .zshrc 配置

1
sed -i 's/^plugins=(\(.*\)/plugins=(autojump zsh-autosuggestions zsh-syntax-highlighting \1/' ~/.zshrc

退出 Terminal, 再次登录即可。

相关文章

KubeSphere 部署向量数据库 Milvus 实战指南
探索 Kubernetes 持久化存储之 Longhorn 初窥门径
征服 Docker 镜像访问限制!KubeSphere v3.4.1 成功部署全攻略
那些年在 Terraform 上吃到的糖和踩过的坑
无需 Kubernetes 测试 Kubernetes 网络实现
Kubernetes v1.31 中的移除和主要变更

发布评论