blob: 0d3a8a36839b5261ded8eb7e71e87d4a7fd4fe85 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
" Taken from:
" https://stackoverflow.com/questions/1878974/redefine-tab-as-4-spaces#1878983
set tabstop=2 " The width of a TAB is set to 2.
" Still it is a \t. It is just that
" Vim will interpret it to be having
" a width of 2.
set shiftwidth=2 " Indents will have a width of 2
set softtabstop=2 " Sets the number of columns for a TAB
set expandtab " Expand TABs to spaces
|