From a7ab0793269bd34566eebc6dc6b28508dcb2377e Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Thu, 20 Jun 2013 17:26:59 +0400 Subject: [PATCH] Vim: tabsize 8->4 --- .vimrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vimrc b/.vimrc index 038bcd1..75daba6 100644 --- a/.vimrc +++ b/.vimrc @@ -23,13 +23,13 @@ nmap :set invlist function! GnuIndent() setlocal cinoptions=>4,n-2,{2,^-2,:2,=2,g0,h2,p5,t0,+2,(0,u0,w1,m1 setlocal shiftwidth=2 - setlocal tabstop=8 + setlocal tabstop=4 endfunction " Setup for the CPP coding format standard function! CppIndent() - setlocal shiftwidth=8 - setlocal tabstop=8 + setlocal shiftwidth=4 + setlocal tabstop=4 setlocal noexpandtab endfunction