From 0241463fa9691e6460f9f430091cf99ad40926ea Mon Sep 17 00:00:00 2001 From: Ryan Reed Date: Mon, 11 Oct 2021 14:10:13 -0400 Subject: [PATCH] Changing yaml default tabstop from 2 to 4 --- dot_vim/after/ftplugin/yaml.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dot_vim/after/ftplugin/yaml.vim b/dot_vim/after/ftplugin/yaml.vim index 0c5222d..e234ac6 100644 --- a/dot_vim/after/ftplugin/yaml.vim +++ b/dot_vim/after/ftplugin/yaml.vim @@ -1,4 +1,4 @@ -setlocal shiftwidth=2 -setlocal softtabstop=2 -setlocal tabstop=2 +setlocal shiftwidth=4 +setlocal softtabstop=4 +setlocal tabstop=4 setlocal foldmethod=indent