Fix old vim compatibility: shiftwidth copy of ts

This commit is contained in:
2014-03-11 20:54:55 +03:00
parent 0b9d34f65f
commit 84c00d0f21

2
.vimrc
View File

@@ -9,7 +9,7 @@ set fileencodings=utf-8,cp1251,latin1
" Indentation settings. Dragons ahead!
set tabstop=4 " The width of the TAB character, plain and simple.
set shiftwidth=0 " Auto indentation, >>, <<, ==. 0 to use tabstop value.
set shiftwidth=4 " Auto indentation, >>, <<, ==
set softtabstop=0 " Number of spaces that a <Tab> counts for while performing editing
" operations, like inserting a <Tab> or using <BS>.