From 7978a7a69f8d3baea9ed26444f44da27164e82e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 28 Feb 2021 12:19:27 +0100 Subject: [PATCH] Set tab to 4 spaces instead of 8 --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 5b379c3..a5d7f48 100644 --- a/.vimrc +++ b/.vimrc @@ -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 in the file counts for. +set tabstop=4 " Number of spaces that a in the file counts for. set softtabstop=4 " Number of spaces that a counts for while performing editing operations. set shiftwidth=4 " Number of spaces to use for each step of (auto)indent.