下载主题
Iterm2-color-schemes
Mac选择 tar.gz 下载下来后,解压
配置主题
打开 iTerm2 的 Preferences >> Profiles >> Colors >> 右下角的 ColorPresets...
点击导入
找到已经解压的主题文件,选择 schemes 里的所有主题或你喜欢的特定主题
导入之后,选择相应主题即可。
注意,最后一步也是最重要的一步:
你可能已经发现了,设置完主题后,字体颜色仍然是白色的
接下来需要在配置文件中进行配置,使字体颜色生效
在终端输入Linux命令,打开配置文件:
cd ~
open -e .bash_profile
// 如果找不到该文件,提示以下信息
The file /Users/jake/.bash_profile does not exist.
// 则应该先创建配置文件,然后再打开,命令如下:
touch .bash_profile
open -e .bash_profile
输入下列配置信息:
# iTerm 2
# added by Anaconda3 4.4.0 installer
export PATH="/Users/apple/anaconda/bin:$PATH"
#enables colorin the terminal bash shell export
export CLICOLOR=1
#setsup thecolor scheme for list export
export LSCOLORS=gxfxcxdxbxegedabagacad
#sets up theprompt color (currently a green similar to linux terminal)
export PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;36m\]\w\[\033[00m\]\$ '
#enables colorfor iTerm
export TERM=xterm-256color
更新配置文件,使其生效:
source .bash_profile
嗒哒~