## 最终效果 ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-01-11.png) ## 下载iTerm > https://www.macwk.com/soft/iterm2 1. 安装完成后,在/bin目录下会多出一个zsh的文件。 2. Mac系统默认使用dash作为终端,可以使用命令修改默认使用 3. 如果想修改回默认dash,同样使用chsh命令即可:chsh -s /bin/zsh 4. 如果想修改回默认dash,同样使用chsh命令即可:chsh -s /bin/bash 5. OK,这就是iTerm2初始的样子,下面我们来美化它,让它变得更好用! ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-04-42.jpg) ### 安装Oh my zsh * 安装方法有两种,可以使用curl或wget,看自己环境或喜好: #### curl 安装方式 ```shell sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" ``` #### wget 安装方式 ```shell # wget 安装方式 sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" ``` ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-06-58.jpg) * oh-my-zsh开源地址:https://github.com/robbyrussell/oh-my-zsh ### 安装PowerLine * Powerline是agnoster主题的依赖。具体可以在repo里查询到: https://github.com/agnoster/agnoster-zsh-theme * powerline官网:http://powerline.readthedocs.io/en/latest/installation.html * 安装powerline的方式依然简单,也只需要一条命令: ```shell pip install powerline-status --user ``` * 没有安装pip的同学可能会碰到zsh: command not found: pip。 ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-08-24.jpg) * 使用命令安装pip即可:sudo easy_install pip * 安装后再次执行安装powerline的命令即可。 ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-08-57.jpg) ## 安装PowerFonts * 安装字体库需要首先将项目git clone至本地,然后执行源码中的install.sh。 * 在你习惯的位置新建一个文件夹,如:~/Desktop/OpenSource/ ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-09-25.jpg) * 在此文件夹下执行git clone命令: ```shell # git clone git clone https://github.com/powerline/fonts.git --depth=1 # cd to folder cd fonts # run install shell ./install.sh ``` ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-09-57.jpg) * 安装好字体库之后,我们来设置iTerm2的字体,具体的操作是iTerm2 -> Preferences -> Profiles -> Text,在Font区域选中Change Font,然后找到Meslo LG字体。有L、M、S可选,看个人喜好: ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-10-20.jpg) ### 安装配色方案 * 配色方案在使用VIM或Colorful Log时会变得非常有用,同时界面也不会一片黑绿一样死板。 * 同样使用git clone的方式下载源码进行安装: ```shell cd ~/Desktop/OpenSource git clone https://github.com/altercation/solarized cd solarized/iterm2-colors-solarized/ open . ``` * 在打开的finder窗口中,双击Solarized Dark.itermcolors和Solarized Light.itermcolors即可安装明暗两种配色: ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-11-03.jpg) * 再次进入iTerm2 -> Preferences -> Profiles -> Colors -> Color Presets中根据个人喜好选择这两种配色中的一种即可: ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-11-20.jpg) ### 命令补全 * 跟代码高亮的安装方式一样,这也是一个zsh的插件,叫做zsh-autosuggestion,用于命令建议和补全。 ```shell cd ~/.oh-my-zsh/custom/plugins/ git clone https://github.com/zsh-users/zsh-autosuggestions vi ~/.zshrc ``` * 找到plugins,加上这个插件即可: ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-15-14.jpg) * 插件效果 ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-15-34.jpg) ### 安装主题 * 下载agnoster主题,执行脚本安装: ```shell cd ~/Desktop/OpenSource git clone https://github.com/fcamblor/oh-my-zsh-agnoster-fcamblor.git cd oh-my-zsh-agnoster-fcamblor/ ./install ``` * 执行上面的命令会将主题拷贝到oh my zsh的themes中. ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-11-58.jpg) * 拷贝完成后,执行命令打开zshrc配置文件,将ZSH_THEME后面的字段改为agnoster。 ```shell vi ~/.zshrc ``` ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-12-27.jpg) * 修改完成后按一下esc调出vi命令,输入:wq保存并退出vi模式。 * 此时command+Q或source配置文件后,iTerm2变了模样: ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-12-44.jpg) ### 安装高亮插件 * 这是oh my zsh的一个插件,安装方式与theme大同小异: ```shell cd ~/.oh-my-zsh/custom/plugins/ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git vi ~/.zshrc ``` * 这时我们再次打开zshrc文件进行编辑。找到plugins,此时plugins中应该已经有了git,我们需要把高亮插件也加上: ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-13-14.jpg) 1. 请务必保证插件顺序,zsh-syntax-highlighting必须在最后一个。 2. 然后在文件的最后一行添加:source ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 3. 按一下esc调出vi命令,输入:wq保存并退出vi模式 4. 执行命令使刚才的修改生效. ```shell source ~/.zshrc ``` * 至此大功告成,请看最终效果图. ![](https://img.2smile.cn/_image/2021-06-12/2021-06-12-10-01-11.png) * 背景图片取自微软Surface Studio的4K壁纸(将近12MB大小),非常漂亮,需要的可以自取: * https://pan.baidu.com/s/1LKd4ghGyyNI6UwHhOHvfaA 提取码: snrd * 更换背景图片方式:iTerm2 -> Preferences -> Profiles -> Window -> BackGround Image勾选图片即可。 最后修改:2021 年 06 月 12 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,请随意赞赏