Add CMake indentation file
[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 " ceph style tabs
9 set tabstop=8
10 set softtabstop=2
11 set shiftwidth=2
12 set noexpandtab
13
14 " Traditional cpp four-space indentation
15 "set sw=4
16 "set ts=4
17 "set et
18
19 " 100 column limit
20 set tw=100
21
22 set cinoptions+=g2h2:2=2t0(0
23