May.26 2011
关于缩进
============
"将缩进风格设置为C-Style
set autoindent=cindent
"将Shift键的宽度设置为4,即每次手动按下Tab键,将移动四个字符的距离
set tabstop=4
"number of spaces to use for indent,即设置缩进的宽度
set shiftwidth=4
"设置public protected private这些C++声明 置于所在代码块的N个字符后
"个人习惯于这些关键字位于行首,即与大括号对齐,不缩进。
"要通过设置cindent option来进行设置,如下:
set cino=g0