From f2a3713bd0a96e6b4b5ee869f6f210addebb6d3d Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Wed, 12 Feb 2014 15:04:56 +0400 Subject: [PATCH] Tabs in Vala files. --- .vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vimrc b/.vimrc index a8af793..c5357f2 100644 --- a/.vimrc +++ b/.vimrc @@ -43,6 +43,8 @@ endfunction " Setup for the Vala coding format standard function! ValaIndent() setlocal shiftwidth=4 + setlocal tabstop=4 + setlocal noexpandtab endfunction au FileType c call GnuIndent()