From 2dd6344e8794bdbd6ef4a1c87fe6339c1b2fb4bb Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 24 Mar 2025 10:42:22 +0100 Subject: [PATCH] modify `indent_size` so users can customise it users can set `tab_size` in their `~/.editorconfig` file, for their preferred tab rendering width, whilst each indent remains 1 tab. --- .editorconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 7ca4e55..4223e69 100644 --- a/.editorconfig +++ b/.editorconfig @@ -12,11 +12,11 @@ indent_size = 4 [*.{c,h,cpp,hpp,rs}] indent_style = tab -indent_size = 4 +indent_size = tab [makefile] indent_style = tab -indent_size = 2 +indent_size = tab [*.{yaml,json}] indent_style = space