iTerm 2 + Solarized Dark + oh-my-zsh + agnoster


最近用腻了老的终端界面,将终端更新顺便也调整了下界面,当作个人的Mac OS X终端最佳实践。

最终效果的截屏(来源于agnoster官网)

1、iTerm 2( https://www.iterm2.com/ )

brew cask install iterm2  #习惯使用homebrew
brew cask install iterm2-beta #要想使用beta版本

  2、Solarized Dark (https://github.com/altercation/solarized/tree/master/iterm2-colors-solarized)

curl -O https://raw.githubusercontent.com/altercation/solarized/master/iterm2-colors-solarized/Solarized%20Dark.itermcolors  
#下载Solarized Dark文件到当前目录

打开iTerm2 → preferences 菜单→ profiles → colors → load presets. 在打开的窗口,选中刚才下载的文件。

  3、oh-my-zsh (https://github.com/robbyrussell/oh-my-zsh)

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

4、agnoster(https://github.com/agnoster/agnoster-zsh-theme)

agnoster已经是oh-my-zsh的内置主题,只需将它设置为当前使用的主题。

nano ~/.zshrc   #使用nano编辑器打开.zshrc文件

找到: ZSH_THEME=“robbyrussell” 修改为: ZSH_THEME=“agnoster” export DEFAULT_USER=你的用户名 #去掉该主题默认的username@hostname 的输入提示前缀,你的用户名可以在打开的终端命令行执行whoami查看。 保存文件并退出。

5、增加所需的图标字体(https://github.com/powerline/fonts)

git clone https://github.com/powerline/fonts.git --depth=1
cd fonts
./install.sh
cd ..
rm -rf fonts

打开iTerm2 → Preferences 菜单 → Profiles → Text → Change Font 选择Meslo LG M DZ Regular for Powerline字体,大小随你喜欢(我用12)。

6、完成

comments powered by Disqus