最終效果
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.基本配置
// 復(fù)制 vim 配置模版
cp /usr/share/vim/vimrc ~/.vimrc
// 開啟語(yǔ)法高亮
echo 'syntax on' >> ~/.vimrc
// 開啟行號(hào)顯示
echo 'set nu!' >> ~/.vimrc
3.設(shè)置主題
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.修改內(nèi)容
// 注釋這一行代碼胆敞,或者改為你想要的格式
// 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.沉浸式體驗(yàn)
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.如圖