From 90226a7e1f408c9c0956ec5e0e01b41dc0dfd3e1 Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Sun, 5 Oct 2025 00:03:37 +0200 Subject: [PATCH] don't expand tabs in makefiles --- vim/.vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/vim/.vimrc b/vim/.vimrc index d9a46c1..2da50a4 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -6,6 +6,7 @@ autocmd FileType * setlocal indentexpr= autocmd FileType c setlocal path+=/usr/local/include,/usr/include autocmd FileType csharp setlocal makeprg=dotnet autocmd FileType go setlocal makeprg=go noexpandtab +autocmd FileType make setlocal noexpandtab autocmd FileType python setlocal makeprg=basedpyright autocmd FileType yaml setlocal tabstop=2 let g:rustfmt_autosave = 0