cpp.vim: continue C++-style doxygen comments
[cmccabe-etc] / .vim / indent / cpp.vim
1 if exists("b:did_indent")
2    finish
3 endif
4
5 source $VIMRUNTIME/indent/cpp.vim
6 let b:did_indent = 1
7
8 " Hadoop style indentation
9 set sw=2
10 set ts=2
11 set et
12
13 " 80 column limit
14 set tw=80
15
16 set cinoptions=:0,l1,t0,g0,(0   " C-Indent options: Linux-kernel style
17
18 " We want to continue C++-style doxygen comments (i.e., the ///)
19 set comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,bO:///,O://