From aae727976876c0f857d5f45deb5a0d6bec1101a5 Mon Sep 17 00:00:00 2001 From: "Andrew R. M" Date: Wed, 12 Oct 2016 01:54:03 -0400 Subject: [PATCH] vimrc: Change default tabs to use four spaces --- vimrc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/vimrc b/vimrc index 45ad97d..345c73d 100644 --- a/vimrc +++ b/vimrc @@ -37,10 +37,11 @@ set nocompatible filetype plugin on syntax on - " Use two spaces instead of tabs " - set softtabstop=2 - set shiftwidth=2 - set tabstop=2 + " Use four spaces instead of tabs " + " Can be overriden by ftplugin and sleuth " + set softtabstop=4 + set shiftwidth=4 + set tabstop=4 " Don't redraw the screen unless necessary " set lazyredraw