From b57142a5758713e02e85861d1bc3c4ec8aa862a3 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Tue, 23 Jul 2024 01:45:33 -0400 Subject: [PATCH] fix: restore `tab-width` to the default 8 Contrary to what I previously thought, this doesn't affect indentation itself, only how hard tab characters are rendered. Much of Emacs's ecosystem assumes that hard tabs are 8 characters wide. --- config.org | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config.org b/config.org index 1079985..8ae8496 100644 --- a/config.org +++ b/config.org @@ -1041,8 +1041,7 @@ This is mostly config settings that don't belong to any particular package and a It wouldn't be Emacs if there wasn't an endless list of config variables to change every aspect of its function! #+begin_src emacs-lisp -(setq-default tab-width 2 ; 2 width tabs - delete-by-moving-to-trash t ; Delete files to trash +(setq-default delete-by-moving-to-trash t ; Delete files to trash window-combination-resize t ; Resize windows more evenly )