From e3d4b4652a9ad89d6a3ce350fe2bee01ed216f1d Mon Sep 17 00:00:00 2001 From: Gea-Suan Lin Date: Sat, 13 Jan 2024 18:53:35 +0800 Subject: [PATCH] Set noexpandtab for go files. --- .vim/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vim/vimrc b/.vim/vimrc index 8f09786..01e1829 100644 --- a/.vim/vimrc +++ b/.vim/vimrc @@ -104,7 +104,7 @@ au BufNewFile,BufRead GNUmakefile set noexpandtab au BufNewFile,BufRead Makefile set noexpandtab au BufReadPost * if line("'\"") > 0|if line("'\"") <= line("$")|exe("norm '\"")|else|exe "norm $"|endif|endif au FileType dart,html,javascript,javascriptreact,json,ruby,typescript,yaml set shiftwidth=2 -au FileType go set shiftwidth=4 tabstop=4 +au FileType go set noexpandtab shiftwidth=4 tabstop=4 autocmd BufEnter * silent! lcd %:p:h autocmd BufReadPost COMMIT_EDITMSG exe "normal! gg" map :NERDTreeToggle