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.
This commit is contained in:
Kiana Sheibani 2024-07-23 01:45:33 -04:00
parent 17bd8557db
commit b57142a575
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -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! 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 #+begin_src emacs-lisp
(setq-default tab-width 2 ; 2 width tabs (setq-default delete-by-moving-to-trash t ; Delete files to trash
delete-by-moving-to-trash t ; Delete files to trash
window-combination-resize t ; Resize windows more evenly window-combination-resize t ; Resize windows more evenly
) )