From: Colin Patrick McCabe Date: Mon, 27 Sep 2010 20:09:27 +0000 (-0700) Subject: cpp.vim: use Ceph-style tabs. X-Git-Url: http://club.cc.cmu.edu/~cmccabe/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76ce8991a20c8107f107bc6d0ca06b44499de73f;hp=3260ef8a602bb8deaff9fffc4fa5a40f6417c8f9;p=cmccabe-etc cpp.vim: use Ceph-style tabs. --- diff --git a/.vim/indent/cpp.vim b/.vim/indent/cpp.vim index ea6330a..2a6a7f1 100644 --- a/.vim/indent/cpp.vim +++ b/.vim/indent/cpp.vim @@ -5,10 +5,16 @@ endif source $VIMRUNTIME/indent/cpp.vim let b:did_indent = 1 +" ceph style tabs +set tabstop=8 +set softtabstop=2 +set shiftwidth=2 +set noexpandtab + " Traditional cpp four-space indentation -set sw=4 -set ts=4 -set et +"set sw=4 +"set ts=4 +"set et " 100 column limit set tw=100