vim编辑器提供的色彩配置模版:
CentOS的方案文件放在:/usr/share/vim70/colors
$ ls /usr/share/vim/vim62/colors
blue.vim delek.vim evening.vim murphy.vim README.txt torte.vim
darkblue.vim desert.vim koehler.vim pablo.vim ron.vim zellner.vim
default.vim elflord.vim morning.vim peachpuff.vim shine.vim
在自己的HOME创建.vim目录
cd ~
mkdir .vim
把整个colors目录拷贝进去
cp -r /usr/share/vim/vim62/colors ~/.vim
在HOME创建.vimrc配置文件
cd ~
vim .vimrc
加入一行
:colorscheme evening
evening为模版名称
另外:定义ls输出的颜色在/etc/DIR_COLORS和/etc/DIR_COLORS.xterm,注销生效
颜色表
前景 背 景 颜 色
—————————————
30 40 黑 色
31 41 紅 色
32 42 綠 色
33 43 黃 色
34 44 藍 色
35 45 紫 紅色
36 46 青 藍色
37 47 白 色
代码 意 义
————————-
0 OFF
1 高 亮显示
4 underline
5 闪 烁
7 反 白显示
8 不 可见
解决中文字体乱码
在~/.vimrc中加入:
let &termencoding=&encoding
set fileencodings=utf-8,gbk,ucs-bom,cp936
Sorry, the comment form is closed at this time.
No comments yet.