1. 程式人生 > >Vim雜記:Sublime的配色方案

Vim雜記:Sublime的配色方案

一、前言                                    

  愛美之心人皆有之,sublime的配色實在好看,於是希望Vim也能這樣。

二、配置                                    

 1.下載monokai(https://github.com/sickill/vim-monokai),然後將Monokai.vim儲存到~/.vim/colors下;

 2.配置~/.vimrc檔案,新增 syntax enable 、 colorscheme Monokai 兩行。我的~/.vimrc檔案如下

複製程式碼
set encoding=utf-8
set fileencoding=utf-8 set fileencodings=ucs-bom,utf-8,chinese,cp936 set guifont=Consolas:h15 language messages zh_CN.utf-8 set lines=45 columns=100 set number set autoindent set smartindent set tabstop=4 set autochdir set shiftwidth=4 set foldmethod=manual
syntax enable colorscheme Monokai
set nocompatible
set nobackup
複製程式碼

三、參考                        

http://calefy.org/2012/10/30/the-config-of-my-vim.html

來源:http://www.cnblogs.com/fsjohnhuang/p/3911611.html