vim中文编码 行号显示等设置

  1 set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936
  2 set termencoding=utf-8
  3 set encoding=utf-8
  4 set showmatch
  5 set nu
  6 set autoindent
  7 set smartindent
  8 set tabstop=4
  9 set shiftwidth=4
 10 set ruler
 11 syntax on
第1~3行:设置vim编码(fileencoding设置文件编码,termencoding设置终端编码,encoding设置buffer等vim内部使用的编码)

第4行:设置匹配模式,例如括号自动匹配

第5行:设置显示行号

第6~7行:设置对齐格式

第8~9行:设置缩近

第10行:设置在terminal右下角显示光标坐标

第11行:语法高亮显示


附:

以上设置均在用户主目录~/.vimrc文件中配置

参考:

http://www.cnblogs.com/joeyupdo/archive/2013/03/03/2941737.html

http://blog.itpub.net/8111049/viewspace-628456/


你可能感兴趣的:(vim)