Mac下iTerm2 + Oh My Zsh配置个性化终端
引用:
https://www.jianshu.com/p/ba08713c2b19
https://www.iterm2.com/index.html
-
效果
-
介绍
-
iTerm2
iTerm2是terminal的替代品,内置很多丰富的功能,比如窗口分割、热键、搜索、密码管理等,让你在使用中的体验更友好,效率更快。
更多功能可以查看这里
https://www.iterm2.com/features.html
-
Oh My Zsh
Oh My Zsh是一个zsh的管理配置工具,可以让你在zsh中轻松的配置各种插件,比如布局、高亮、自动填充等
更多插件可以查看这里
https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
-
-
下载安装
官方地址
https://www.iterm2.com/
下载地址
https://www.iterm2.com/downloads.html
双击解压 运行iTerm程序,根据提示选择将文件拷贝到application中,或者brew install iterm2
-
配置颜色字体等
-
颜色
iTerm2
->Perferences
->Profiles
->Colors
->Color Presets
->Solarized Dark
-
字体(主题插件安装完成之后再配置字体)
iTerm2
->Perferences
->Profiles
->Text
->Font
->MesloLGS NF
-
新窗口路径与上一个窗口路径一致
iTerm2
->Perferences
->Profiles
->General
->Working Directory
->Reuse previous session's directory
-
-
安装Oh My Zsh
官方地址
https://github.com/ohmyzsh/ohmyzsh
-
curl方式安装
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
-
-
安装powerlevel10k主题插件
官方地址
https://github.com/romkatv/powerlevel10k
Oh My Zsh方式安装
-
下载文件到Oh My Zsh插件库
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k
-
编辑~/.zshrc文件
ZSH_THEME="powerlevel10k/powerlevel10k"
修改字体为
MesloLGS NF
重启iTerm2
-
如果配置窗口没有提示,使用以下命令
p10k configure
-
-
安装高亮显示插件
官方地址
https://github.com/zsh-users/zsh-syntax-highlighting
Oh My Zsh方式安装
-
下载文件到Oh My Zsh插件库
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
-
编辑~/.zshrc文件,plugins增加zsh-syntax-highlighting插件
plugins=( [plugins...] zsh-syntax-highlighting)
-
-
安装自动填充建议插件
官方地址
https://github.com/zsh-users/zsh-autosuggestions
Oh My Zsh方式安装
-
下载文件到Oh My Zsh插件库
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
-
编辑~/.zshrc文件,plugins增加zsh-autosuggestions插件
plugins=(zsh-autosuggestions)
-