iTerm2 下载及配色

对于还没有安装过iTerm2的

安装iTerm2: Download,解压后直接打开

以经典的谷歌 Material Design 主题为例

这里我找到两个色系:

  • 完全遵循官方色调的:material-design-colors.itermcolors
  • 深色调修改版:material-dark.itermcolors

接下来是导入主题文件

打开iTerm2 - Preferences - Profiles - Colors - Presets - Import 下载过的色系。

然后就是终端的配色

编辑 ~/.bash_profile 文件,在文件顶部加入以下内容(如果使用的是 ZSH 则不需要这步操作):

# iterm2 color configuration
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
export PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '

然后:

source ~/.bash_profile

你可能感兴趣的:(iTerm2 下载及配色)