From 87ec88c6f2b3494e9c884c8feda9b3cce43e9f6a Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Thu, 24 Aug 2023 15:24:30 -0400 Subject: [PATCH] Added html, php, and css to nvim's "noexpandtab" list --- config-files/sysinit.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config-files/sysinit.vim b/config-files/sysinit.vim index 37ed1b4..2ef3ca9 100644 --- a/config-files/sysinit.vim +++ b/config-files/sysinit.vim @@ -8,7 +8,7 @@ set number set tabstop=4 set shiftwidth=4 set expandtab -autocmd FileType go set noexpandtab +autocmd FileType go,html,php,css set noexpandtab " enable visually indented text wrapping set wrap