Mac下折腾iTerm2主题配置

折腾iTerm2

为了好看,搞定之后,我已经不想用编译器了,如果所有都能在iTerm2下搞定就好了,不过这需要慢慢折腾,记录一下过程。基于MacOS Mojave 10.14.5+Zsh+Powerline+zsh-syntax-highlighting。

安装过程

搜索网络,找到配置教程,参考:iTerm 2 && Oh My Zsh

链接文章的效果图,我没有设置背景图,如果不允许使用,联系我删除

下面说一下我遇到的一些坑:

安装iTerm2 (✓)

安装oh-my-zsh (✓)

设置启动

chsh -s /bin/zsh

安装powerline (✗)

 pip install powerline-status

这个命令失败,经过搜索,使用下面命令成功

 pip install powerline-status --user

配色使用了iTerm2自带的Solarized Dark。

zsh使用agnoster主题,需要将隐藏文件打开,打开Home下.zshrc文件,修改ZSH_THEME="agnoster"。

显示隐藏文件命令:

defaults write com.apple.finder AppleShowAllFiles -bool true

增加高亮效果,在.zshrc中添加:

source ~/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
plugins=(zsh-syntax-highlighting)

路径太长,将agnoster.zsh-theme文件中的build_prompt()下prompt_context注释掉,但是我这里还报错,prompt_awe命令找不到,我就将prompt_awe也注释了,目前没发现问题。

你可能感兴趣的:(Mac下折腾iTerm2主题配置)