From d8b85232cfe1d80ad373f296b9bafb04e5ee1d32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20A=2E=20Ortega=20Froysa?= Date: Wed, 13 May 2026 11:26:25 +0200 Subject: [PATCH] Set specific configuration for pound project. --- init.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.vim b/init.vim index cd601d1..dbc5f34 100644 --- a/init.vim +++ b/init.vim @@ -34,6 +34,11 @@ set shiftwidth=4 " when indenting use 4 spaces set noexpandtab " 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