Oh My Zsh,『 Powerlevel10k 安装 & 配置 』


Powerlevel10k


Powerlevel10k 安装

  • 手动安装
1
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k

  • 国内用户可以使用 gitee.com 上的官方镜像加速下载.
1
git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k

Powerlevel10k 配置

  • 编辑 .zshrc 文件, 文件路径 ~/.zshrc
1
open ~/.zshrc
1
ZSH_THEME="powerlevel10k/powerlevel10k"

Powerleve10k 自定义样式


.zshrc 配置

  • 下载 Dream_01.zshrc 或 Dream_02.zshrc,把其他代码复制到 .zshrc 文件的最下面

  • 找到 .zshrc 文件 编辑

  • 文件目录 :

1
open ~/.zshrc

安装字体库 ( hack-nerd-font )

  • 我们现在需要安装终端需要的字体库
  • Nerd Fonts
  • 这里我实用 Homebrew 来安装
  • Homebrew
  • 打开终端输入:
1
brew install font-hack-nerd-font
  • 等待安装完成.

修改终端字体

  • Mac OC 系统自带终端 -> 偏好设置 -> 字体 -> 修改成 Hack Nerd Font

  • iTerm -> Preferences -> Profiles -> Text -> font -> 修改成 Hack Nerd Font


.zshrc 文件下载