Vim杂记:Sublime的配色方案

时间:2021-09-04 06:17:36

一、前言                                    

爱美之心人皆有之,sublime的配色实在好看,于是希望Vim也能这样。

二、配置                                    

1.下载monokai(https://github.com/sickill/vim-monokai),然后将Monokai.vim保存到~/.vim/colors下;

2.配置~/.vimrc文件,添加 syntax enable 、 colorscheme Monokai 两行。我的~/.vimrc文件如下

set encoding=utf-
set fileencoding=utf-
set fileencodings=ucs-bom,utf-,chinese,cp936
set guifont=Consolas:h15
language messages zh_CN.utf-
set lines= columns=
set number
set autoindent
set smartindent
set tabstop=
set autochdir set shiftwidth=
set foldmethod=manual

syntax enable
colorscheme Monokai
set nocompatible
set nobackup

三、参考                        

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