下载安装iTerm2
下载地址:https://iterm2.com/downloads.html
下载后的文件为zip文件,解压之后,双击运行,手动拖动或者点击move to applications目录下
配置iTerm2的主题
- 下载主题内容
git clone https://github.com/altercation/solarized.git
-
对终端进行颜色主题配置
- 打开本地iTerm
- 通过快捷键command + ,,打开设置页面(如下):
点击Profiles => Colors => Color Presets => Import
- 引入下载好项目中对应主题:solarized => iterm2-colors-solarized => Solarized Dark.itermcolors
- 最后选择上图中第三步的Solarized Dark后,重新启动iTerm即可看到效果
配置On My Zsh
- 下载地址:https://github.com/ohmyzsh/ohmyzsh
- 对其进行一键安装
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- 下载后终端内运行如下命令,目的为指定Iterm2设置为默认的sheel
chsh -s /bin/zsh
- 配置zsh的主题内容,执行vim ~/.zshrc,将主题配置修改为ZSH_THEME="agnoster" 也可以去https://github.com/ohmyzsh/ohmyzsh/wiki/themes寻找对应的主题内容
安装iTerm2之后无法使用npm等
将上图中选中的内容,替换为下方代码:plugins=(git node nvm npm yarn) ,保存后退出;
再去执行source ~/.zshrc