Mac 终端工具 iTerm2

下载&安装

地址:
https://www.iterm2.com/

常用主题

iTerm2 最常用的主题是 Solarized Dark theme,下载地址:http://ethanschoonover.com/solarized

下载的是压缩文件,解压,然后打开 iTerm2,按 Command + 键,打开 Preferences 配置界面,然后 Profiles -> Colors -> Color Presets,在下拉列表中选择 Import,选择刚才解压的 solarized->iterm2-colors-solarized->Solarized Dark.itermcolors文件.导入成功后,在 Color Presets 下选择 Solarized Dark 主题,就可以了。

配置 Oh My Zsh

下载地址:
https://github.com/robbyrussell/oh-my-zsh

1.一键安装:

$ sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

2.安装好之后,需要把 Zsh 设置为当前用户的默认 Shell(这样新建标签的时候才会使用 Zsh):

$ chsh -s /bin/zsh

3.然后,将主题修改为ZSH_THEME="agnoster"

$ vim ~/.zshrc

输入i进入编辑模式,将 ZSH_THEME 编辑为 ZSH_THEME="agnoster"

保存,退出

配置字体

下载地址:Meslo LG M Regular for Powerline.ttf

下载,安装
然后打开 iTerm2,按Command + ,键,打开 Preferences 配置界面,然后 Profiles -> Text -> Font -> Chanage Font,选择 Meslo LG M Regular for Powerline 字体。

声明高亮

特殊命令和错误命令,会有高亮显示。

使用 Homebrew 安装:

$ brew install zsh-syntax-highlighting

安装成功之后,编辑

vim ~/.zshrc

在最后一行增加下面配置:

source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh

开机自动启动

系统设置用户与群组->登陆项,增加iTerm

打开iTerm的设置界面,
Appearance -> General 勾选Exclude from Dock and Command-Tab Application Switcher
General -> Closing 三个勾全部取消

vim 显示行号、自动缩进、语法高亮

用户目录下创建 .vimrc文件

# set number
syntax on
filetype on
set ruler
set autoindent
set tabstop=2
set expandtab