Set tab to 4 spaces instead of 8

This commit is contained in:
Rodolphe Bréard 2021-02-28 12:19:27 +01:00
parent dfd7bd9730
commit 7978a7a69f

2
.vimrc
View file

@ -27,7 +27,7 @@ colorscheme badwolf " Select the theme.
filetype plugin indent on " Load the plugin and indent file depending on the file type.
set expandtab " Use spaces instead of tabs.
set tabstop=8 " Number of spaces that a <Tab> in the file counts for.
set tabstop=4 " Number of spaces that a <Tab> in the file counts for.
set softtabstop=4 " Number of spaces that a <Tab> counts for while performing editing operations.
set shiftwidth=4 " Number of spaces to use for each step of (auto)indent.