概要
最近被安利了一台 Mbp14 Pro
,然后重新配置了终端,接下来将介绍下安装,先来看下实际效果吧 ~
这是基于
powerlevel10k
打造的终端环境 ~
前置安装
安装 Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
安装 git
brew install git
安装 Oh my zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
主题安装 & 配置
这里选择了 powerlevel10k
来完成终端的主题配置。
安装 powerlevel10k
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
安装字体 MesloLGS Fonts
MesloLGS NF Regular.ttf
MesloLGS NF Bold.ttf
MesloLGS NF Italic.ttf
MesloLGS NF Bold Italic.ttf
配置
配置主题
修改 zsh
默认的主题
输入指令 vim ~/.zshrc
,并找到 ZSH_THEME
进行修改
# 之前
ZSH_THEME="robbyrussell"
# 现在
ZSH_THEME="powerlevel10k/powerlevel10k"
配置插件(可选)
- zsh-syntax-highlighting 语法高亮显示
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
- zsh-autosuggestions 自动提示
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
在 ~/.zshrc
添加插件
plugins=(
git
zsh-syntax-highlighting
zsh-autosuggestions
)
配置效果
现在重新打开你的终端,然后执行
p10k configure
一路按照提示根据个人喜好进行选择,最终完成并重启终端 ~
QA
- 执行
p10k configure
图标没有正常展示
我们需要配置我们下载的字体,点这里配置
打开你的 终端 > 配置 > 描述文件 > 文本 > 更改字体
找到 MesloLGS 字体
并更改。