From 7df579c722332a23a1c447f2ebdb7d07d495f31b Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Sun, 30 Jun 2019 16:42:13 -0700 Subject: [PATCH] add "bad" 4-space tab mode --- home/vimrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/vimrc b/home/vimrc index 0a20650..c45598b 100644 --- a/home/vimrc +++ b/home/vimrc @@ -121,6 +121,10 @@ fu! TabTwo() setlocal tabstop=2 shiftwidth=2 expandtab endf +fu! TabBad() + setlocal tabstop=4 shiftwidth=4 noexpandtab softtabstop=4 +endf + " set TabFour as default set tabstop=8 shiftwidth=4 expandtab softtabstop=4