From a9c6986a554f87a9dcb29fd9c7a8fbd4656c38fc Mon Sep 17 00:00:00 2001 From: Doyle Date: Sun, 23 Aug 2020 01:32:40 +1000 Subject: [PATCH] Change tab width to 4 --- Installer/_vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Installer/_vimrc b/Installer/_vimrc index 989eb6f..0e0a996 100644 --- a/Installer/_vimrc +++ b/Installer/_vimrc @@ -92,10 +92,10 @@ set foldlevelstart=99 " Initially all folds open set foldmethod=indent " Allow folding of set linebreak " When wrapping lines, don't break words set list " Show 'listchar' characters -set shiftwidth=2 " Number of space chars for indentation +set shiftwidth=4 " Number of space chars for indentation set smartindent set smarttab " Make 'tab' insert indents at the beginning of a line -set tabstop=2 " Number of space chars for pressing tab +set tabstop=4 " Number of space chars for pressing tab set textwidth=80 " Always format to 80 chars set fileformats=unix,dos