众所周知,vim设置tab键为4个空格,对于编写代码非常有用,但是,makefile文件是需要识别tab键的,下面这个设置可以在代码中替换tab,在makefile中不替换。

:set tabstop=4 "设置tab键为4个空格
:set shiftwidth=4  "设置当行之间交错时使用4个空格
:set expandtab
:set autoindent
autocmd BufNewFile, BufRead *.c, *.cpp, *.java :CFOLD
:set encoding=utf-8 "设置编码格式
:set fileencodings=ucs-bom,utf-8,cp936
:set fileencoding=gb2312
:set termencoding=utf-8