给iTerm更换主题

  1. 下载iTerm
    iTerm下载

  2. 下载之后安装

  3. 打开iTerm ,
    以经典的谷歌 Material Design 主题为例,这里我找到两个色系:
    完全遵循官方色调的:material-design-colors.itermcolors
    深色调修改版:material-dark.itermcolors

选择下载后的解压文件即可。

然后就是终端的配色,

vim  ~/.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

你可能感兴趣的:(给iTerm更换主题)