终极Shell:Zsh(CentOS7 安装 zsh 及 配置 Oh my zsh)

CentOS7 安装 zsh 及 配置 Oh my zsh

我们在通过Shell操作linux终端时,配置、颜色区分、命令提示大都达不到我们预期的效果或者操作较为繁琐。

今天就来介绍一款终极一个及其好用的类Linux系统中的终端软件,江湖称之为马车中的跑车,跑车中的飞行车,史称『终极 Shell』。

1 安装zsh并更改默认终端

①安装软件包

yum -y install zsh git

②更改默认终端

chsh -s /bin/zsh

这时候打开终端软件,应该就会默认进入 zsh 了。

2 配置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

3 安装高亮、自动补全插件

①安装高亮插件: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

4 插件配置

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

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

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

source ~./zshrc

5 效果

在这里插入图片描述

你可能感兴趣的:(其他,shell,zsh,linux,终端,教程,工具推荐)