From e0a14e8603a70c74032e51891b35af96e1007a1d Mon Sep 17 00:00:00 2001 From: Spotlight Date: Thu, 10 Nov 2022 13:44:49 -0600 Subject: [PATCH] Don't have conflicting config options Oops :sweat_smile: --- vimrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vimrc b/vimrc index 14cd8ed..e0ff19b 100644 --- a/vimrc +++ b/vimrc @@ -7,9 +7,10 @@ set backspace=indent,eol,start " two-spaced tabs set tabstop=2 -set softtabstop=0 noexpandtab +set softtabstop=0 set shiftwidth=2 -set tabstop=2 softtabstop=0 expandtab shiftwidth=2 smarttab +set noexpandtab +set smarttab " custom filetypes autocmd BufNewFile,BufRead *.plist set syntax=xml