最终效果
Vim 操作
// 编辑
vim ~/.zshrc
// 立即生效
source ~/.zshrc
1.安装 iTerm2
2.安装 Oh My Zsh
a.安装
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
// 如果安装失败,可以使用 gitee 的地址
sh -c "$(curl -fsSL https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh)"
b.基本配置
// 复制 vim 配置模版
cp /usr/share/vim/vimrc ~/.vimrc
// 开启语法高亮
echo 'syntax on' >> ~/.vimrc
// 开启行号显示
echo 'set nu!' >> ~/.vimrc
3.设置主题
a.编辑 .zshrc 文件
vim ~/.zshrc
b.把 ZSH_THEME 的值改为 "agnoster"
4.安装 Powerline 字体
a.安装
// 将 Powerline 字体文件下载到「下载」文件夹中
cd ~/Downloads && git clone https://github.com/powerline/fonts.git
// 安装所有 Powerline 字体
cd fonts && ./install.sh
// 删除下载的字体文件
cd && rm -rf ~/Downloads/fonts
b.配置字体 DejaVu Sans Mono for Powerline,如图
5.去除路径前缀
a.编辑配置文件 agnoster.zsh-theme
vim ~/.oh-my-zsh/themes/agnoster.zsh-theme
b.修改内容
// 注释这一行代码,或者改为你想要的格式
// prompt_segment black default "%(!.%{%F{yellow}%}.)%n@%m"
// 原代码
# Context: user@hostname (who am I and where am I)
prompt_context() {
if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
prompt_segment black default "%(!.%{%F{yellow}%}.)%n@%m"
fi
}
// 改为
# Context: user@hostname (who am I and where am I)
prompt_context() {
if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
#prompt_segment black default "%(!.%{%F{yellow}%}.)%n@%m"
fi
}
6.沉浸式体验
a.修改主题为Minimal,如图
7.添加常用插件
a.添加插件 zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
b.添加插件 zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
c.配置使用的插件
plugins=(git z zsh-autosuggestions zsh-syntax-highlighting)
a.编辑配置文件 .zshrc
vim ~/.zshrc
b.修改为
plugins=(git z zsh-autosuggestions zsh-syntax-highlighting)
c.如图