From 71c028a855690bbe29dc581e831ae471aca990c2 Mon Sep 17 00:00:00 2001
From: Chris Coley <chris@codingallnight.com>
Date: Wed, 18 Dec 2019 00:03:05 -0800
Subject: [PATCH] Disable softtabstop in vimrc file

---
 vimrc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vimrc b/vimrc
index 93bef66..31d7cf4 100644
--- a/vimrc
+++ b/vimrc
@@ -25,8 +25,8 @@ filetype plugin on      " Enable the filetype plugin
 " Tab options
 set expandtab           " Soft tabs, changes tabs to spaces
 set tabstop=4           " Number of spaces in a tab
-set softtabstop=4       " Number of spaces in a soft tab
-set shiftwidth=4        " Number of spaces in an indentation level.
+set softtabstop=0       " Number of spaces in a soft tab. 0 is disabled
+set shiftwidth=4        " Number of spaces in an indentation level
 
 
 " Searching options
-- 
GitLab