AI 摘要

"让你的Linux更加炫酷" 首先,我们使用的shell在Linux中扮演着翻译官的角色。Linux默认的shell是bash,但显然这样的外观相当单调。如果我们想要一个更加酷炫、与我们程序员身份相符的shell,我们可以尝试使用zsh。 zsh最初只有极客们在使用,随后,一个有点穷而无聊的程序员可能受不了广大开发者们一直使用单调的bash,于是他创建了一个名为【oh-my-zsh麻省理工学院许可下发布的】的开源项目... 下面是安装zsh的步骤: 1. 安装zsh: ``` yum -y install zsh ``` 2. 安装git: ``` yum -y install git ``` 3. 安装wget: ``` yum -y install wget ``` 4. 下载oh-my-zsh的安装脚本: ``` wget https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh ``` 5. 赋予安装脚本执行权限: ``` chmod +x install.sh ``` 6. 执行安装脚本: ``` ./install.sh ``` 接下来,我们可以修改主题: 1. 编辑.zshrc文件: ``` vim ~/.zshrc ``` 2. 修改第11行的主题为"af-magic": ``` ZSH_THEME="af-magic" ``` 3. 使配置文件生效: ``` source ~/.zshrc ``` 若要安装语法高亮和智能补全插件,可以执行以下命令: 1. 下载zsh-syntax-highlighting插件: ``` git clone https://github.com/zsh-users/zsh-syntax-highlighting.git {ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting ``` 2. 下载zsh-autosuggestions插件: ``` git clone https://github.com/zsh-users/zsh-autosuggestions{ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions ``` 3. 编辑.zshrc文件: ``` vim ~/.zshrc ``` 4. 在插件列表中添加以下内容: ``` plugins=( git zsh-syntax-highlighting zsh-autosuggestions ) ``` 5. 使配置文件生效: ``` source ~/.zshrc ``` 如果你想要查看所有的主题,可以访问以下链接: [https://github.com/ohmyzsh/ohmyzsh/wiki/themes](https://github.com/ohmyzsh/ohmyzsh/wiki/themes) 另外,如果你想要使用特殊的字体包,可以执行以下命令: 1. 下载特殊字体包: ``` git clone https://github.com/powerline/fonts.git ``` 2. 进入fonts目录: ``` cd fonts ``` 3. 执行安装脚本: ``` ./install.sh ``` 如果你想要回到普通的shell,只需输入"bash"。如果要回到zsh,只需输入"zsh"即可。 最终效果展示见上述链接。 如果你对这个主题感兴趣,可以在GitHub上查看更多详细信息: [https://github.com/ohmyzsh/ohmyzsh](https://github.com/ohmyzsh/ohmyzsh) (GitHub源码仓库)

首先我们使用的shell算是linux下的翻译官的角色,linux默认的shell是bash。

很显然这个样子很单调,如果我想要一个更酷炫的符合我程序员身份的shell呢,就比如如下这个样子

这时候我们就要引入zsh了 所谓的zsh起初只有极客才在用。后来,有个穷极无聊的程序员可能是实在看不下去广大猿友一直只能使用单调的bash, 于是他创建了一个名为【oh-my-zsh麻省理工学院许可下发布的】的开源项目...

开始安装zsh

yum -y install zsh
yum -y install git
yum -y install wget
wget https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh
chmod +x install.sh
./install.sh

如何变更主题

vim ~/.zshrc
#修改其中第11行
 11 ZSH_THEME="af-magic"
source ~/.zshrc #生效配置文件

安装语法高亮和智能补全

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git {ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions{ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
vim ~/.zshrc

    plugins=(
         git
         zsh-syntax-highlighting
         zsh-autosuggestions
    )
source .zshrc

所有主题

https://github.com/ohmyzsh/ohmyzsh/wiki/themes

特殊字体包

git clone https://github.com/powerline/fonts.git
cd fonts
./install.sh

想要回到普通的shell 敲bash 回到zsh 敲 zsh即可
最终效果展示:

感兴趣的可以去github上查看:
https://github.com/ohmyzsh/ohmyzsh
(github源码仓库)