From 86468f80fcc1974d5ef5f9f8d510c14e75bfdd7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20A=2E=20Ortega=20Froysa?= Date: Fri, 15 May 2026 09:48:33 +0200 Subject: [PATCH] Set expandtab globally. --- init.vim | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/init.vim b/init.vim index dbc5f34..17a5c1b 100644 --- a/init.vim +++ b/init.vim @@ -31,14 +31,9 @@ filetype plugin on " indentation set tabstop=4 " tabs only count for 4 spaces set shiftwidth=4 " when indenting use 4 spaces -set noexpandtab " use tab characters +set expandtab " use tab characters set autoindent -" Project-specific settings -augroup ProjectSetup - au BufRead,BufEnter ~/dev/skudonet/pound/*.{h,c} set et ts=4 sw=4 -augroup END - " view set number set showmatch " show matching bracket