1
0
Fork 0
mirror of https://github.com/hcartiaux/dotfiles.git synced 2024-10-18 09:15:24 +02:00

[vim] 1 tab = 4 spaces

This commit is contained in:
Hyacinthe Cartiaux 2016-03-11 15:19:55 +01:00
parent d01eb2382b
commit 29d404aaf4

View file

@ -185,10 +185,10 @@ set expandtab
" Be smart when using tabs ;)
set smarttab
" 1 tab = 2 spaces
set shiftwidth=2
set softtabstop=2
set tabstop=2
" 1 tab = 4 spaces
set shiftwidth=4
set softtabstop=4
set tabstop=4
" Use tab when editing Makefiles
autocmd FileType make set noexpandtab