vim ~/.vimrc
#显示所有可设置参数
:set all
#设置编码
set encoding=utf-8 fileencodings=ucs-bom,utf-8,cp936
#显示行号
set number
#一个tab为4个空格长度
set tabstop=4
#设置自动缩进
set autoindent
#高亮
syntax on
vim ~/.vimrc
#显示所有可设置参数
:set all
#设置编码
set encoding=utf-8 fileencodings=ucs-bom,utf-8,cp936
#显示行号
set number
#一个tab为4个空格长度
set tabstop=4
#设置自动缩进
set autoindent
#高亮
syntax on