From a158f78d3efe267014af0e55792a3cf1af904225 Mon Sep 17 00:00:00 2001 From: Kris Lamoureux Date: Sat, 14 Mar 2026 20:28:25 -0400 Subject: [PATCH] Configure tab indentation for shell --- vim/.vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vim/.vimrc b/vim/.vimrc index 53e476e..6a5b944 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -18,3 +18,5 @@ if &term =~ '256color' set t_ut= endif +" Use tabs in shell +autocmd FileType sh setlocal tabstop=4 shiftwidth=4 noexpandtab