vim:setts: Change 'tabstop' to 8

I got used to code that is indented with (meant) tabs of width 8.
This commit is contained in:
2025-04-30 16:55:40 +02:00
parent b2127ae3eb
commit d3cbc9d560

View File

@@ -22,7 +22,7 @@ set timeoutlen=1000 ttimeoutlen=0
" smart case insensitive search (insens: /copy /Copy\c; sens: /Copy /copy\C) " smart case insensitive search (insens: /copy /Copy\c; sens: /Copy /copy\C)
set ignorecase smartcase set ignorecase smartcase
" Tab size " Tab size
set tabstop=4 set tabstop=8
" Shift the same amount as tabstop " Shift the same amount as tabstop
set shiftwidth=0 set shiftwidth=0
" Control how vim formats paragraphs. See :h fo-table " Control how vim formats paragraphs. See :h fo-table