标签:
I prefer molokai’s dark grey background.
cd ~/.vim/bundle && \
git clone https://github.com/tomasr/molokai.git
Now Molokai is installed. Add the following to your vimrc.
" Set color scheme
colorscheme molokai
Solarized is a popular light color scheme.
$ cd ~/.vim/bundle $ git clone git://github.com/altercation/vim-colors-solarized.git
put the following two lines in your .vimrc
syntax enable set background=dark colorscheme solarized
or, for the light background mode of Solarized:
syntax enable set background=light colorscheme solarized
标签:
原文地址:http://www.cnblogs.com/luckysimple/p/5062093.html