Mac自带的终端默认的配色看起来有些单调,如何让它变的“漂亮”一些呢?这里我们以Tomorrow
配色方案为例来进行设置。
首先我们使用下面的命令来从Github
上克隆Tomorrow项目
1
$ git clone https://github.com/chriskempson/tomorrow-theme.git
窗口
进入刚才下载的项目的文件夹中的OS X Terminal
文件夹,然后双击运行Tomorrow Night.terminal
即可导入Tomorrow Night
主题到终端。然后我们在终端的Preferences
中的Profiles
选项卡中选择Tomorrow Night
并将它设置为默认。重启终端即可应用新的配色方案。
Vim
打开vim
文件夹中的colors
文件夹并将Tomorrow-Night.vim
文件拷贝到~/.vim/colors/
文件夹下,然后在~/.vimrc
文件中添加一些内容来开启vim语法高亮并设置配色方案为Tomorrow Night
:
1
2
3
$ vi ~/.vimrc
syntax enable
colorscheme Tomorrow-Night
ls
你可能会发现我们安装了Tomorrow-Night
主题之后重启终端之后ls
并没有显示高亮,这个时候我们只需要使用下面的命令启用ls
的高亮即可
1
2
$ vi ~/.bash_profile
export CLICOLOR=1
最终效果如下: