From d3cbc9d56018e90cdef2f0590a87960bf143649f Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Wed, 30 Apr 2025 16:55:40 +0200 Subject: [PATCH] vim:setts: Change 'tabstop' to 8 I got used to code that is indented with (meant) tabs of width 8. --- .config/vim/vimrc.d/30-settings.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/vim/vimrc.d/30-settings.vim b/.config/vim/vimrc.d/30-settings.vim index a6d647f..3c0f5a0 100644 --- a/.config/vim/vimrc.d/30-settings.vim +++ b/.config/vim/vimrc.d/30-settings.vim @@ -22,7 +22,7 @@ set timeoutlen=1000 ttimeoutlen=0 " smart case insensitive search (insens: /copy /Copy\c; sens: /Copy /copy\C) set ignorecase smartcase " Tab size -set tabstop=4 +set tabstop=8 " Shift the same amount as tabstop set shiftwidth=0 " Control how vim formats paragraphs. See :h fo-table