From c034efa0d5010262d0b1723823ca91f91f2fb12e Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Wed, 20 Nov 2019 13:09:54 +0000 Subject: [PATCH] vim: No expandtab in shell scripts --- home/.vim/ftdetect/filetypes.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/.vim/ftdetect/filetypes.vim b/home/.vim/ftdetect/filetypes.vim index 915bf5c..f781a2e 100644 --- a/home/.vim/ftdetect/filetypes.vim +++ b/home/.vim/ftdetect/filetypes.vim @@ -26,7 +26,7 @@ autocmd Filetype php setlocal ts=2 sw=2 sts=2 expandtab autocmd Filetype python setlocal ts=4 sw=4 sts=4 expandtab autocmd Filetype sass setlocal ts=2 sw=2 sts=2 expandtab autocmd Filetype scss setlocal ts=2 sw=2 sts=2 expandtab -autocmd Filetype sh setlocal ts=4 sw=4 sts=4 expandtab +autocmd Filetype sh setlocal ts=4 sw=4 sts=4 autocmd Filetype svg setlocal ts=2 sw=2 sts=2 expandtab autocmd Filetype tex setlocal ts=1 sw=1 sts=1 expandtab autocmd Filetype tf setlocal ts=2 sw=2 sts=2 expandtab