1. iTerm2
1.1 iTerm2安装
直接在其官方的下载地址进行下载:https://www.iterm2.com/downloads.html,下载的直接就是一个 .app 的应用程序,直接拖到 Application
文件夹即可;
或者在终端使用下面的指令安装:
$ brew cask install iterm2
1.2. iTerm2配置
1.2.1 将iterm2设置成默认使用的终端软件
打开iterm2,在左上角的菜单栏依次点击:iTerm2->Make ITerm2 Default Term
1.2.2 设置全局热键
打开iterm2的偏好设置iTerm2->Preferences
,勾选Keys->Hotkey
下的Show/hide iTerm2 with a system-wide hotkey
,将热键设置为你喜欢的(比如command + .
) ,这样你就可以通过设置的全局热键来打开或关闭iTerm2窗口,非常方便
1.2.3 改变光标形状
在 Preperence → Profiles → Text
进行设置。
1.2.4 iterm2 配色方案
网上有现成的配色方案,我们可以直接拿来主义,地址在这里:https://iterm2colorschemes.com/。
下载压缩包,解压后,打开 iTerm2 的设置:Preperence → Profiles → Colors → Color Presets
。点击 import
选择解压好的主题目录下 schemes
目录下的你想要的主题导入。
导入之后,再选择你想要的主题就好了。
还有很多设置,比如背景图什么,可以直接百度进行配置。
2. oh-my-zsh
github连接:https://github.com/robbyrussell/oh-my-zsh
也可以使用curl安装:
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
安装成功后,在命令行用vim打开用户根目录下.zshrc,修改主题为你喜欢的,我修改为ys:
ZSH_THEME="ys"
2.1 自动补全插件 zsh-autosuggestions
clone插件到oh-my-zsh的插件目录/Users/xxxx/.oh-my-zsh/plugins
:
git clone https://github.com/zsh-users/zsh-autosuggestions.git
编辑.zshrc文件,找到plugins=(git)这一行,如果没有添加。更改为如下:
plugins=(git zsh-autosuggestions)
2.2 高亮插件zsh-syntax-highlighting
安装方式和上面的一样。
地址:
https://github.com/zsh-users/zsh-syntax-highlighting.git
插件很多,就不一一列举了,安装方式都是一样的。