From 84eb32c4e84b87d690033f7505b8570427ab8468 Mon Sep 17 00:00:00 2001
From: marxin <mliska@suse.cz>
Date: Sun, 13 Nov 2016 12:05:48 +0100
Subject: [PATCH] vimrc: fix TAB settings
---
contrib/vimrc | 3 +++
1 file changed, 3 insertions(+)
@@ -35,7 +35,10 @@ function! SetStyle()
let l:c_exts = ['c', 'h', 'cpp', 'cc', 'C', 'H', 'def', 'java']
if index(l:c_exts, l:ext) != -1
setlocal cindent
+ setlocal tabstop=8
setlocal softtabstop=2
+ setlocal shiftwidth=2
+ setlocal noexpandtab
setlocal cinoptions=>4,n-2,{2,^-2,:2,=2,g0,f0,h2,p4,t0,+2,(0,u0,w1,m0
setlocal textwidth=80
setlocal formatoptions-=ro formatoptions+=cqlt
--
2.10.1