Solarized包含不少文本处理工具的配色方案,效果是至关的给力,今天先给vim用用吧~ git
1.直接checkout代码 github
git clone git://github.com/altercation/solarized.git
这里包括全部的配色方案,若是只想给vim使用,也可使用这个:Vim Repository shell
2.复制`solarized.vim`到`.vim/colors`目录 vim
cd vim-colors-solarized/colors cp solarized.vim ~/.vim/colors/
3.更改~/.vimrc 工具
syntax enable if has('gui_running') set background=light else set background=dark endif colorscheme solarized
有两个主题,也能够只用一种: 网站
light ui
syntax enable set background=light colorscheme solarized
dark .net
syntax enable set background=dark colorscheme solarized
Emacs,IntelliJ,TextMate,Xcode...更多配色方案?访问solarized网站吧! code