From 6eed57bd628f6ff68be3a844e2a5c92a38e683ba Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Fri, 24 Nov 2023 17:36:39 +0100 Subject: [PATCH] pinwheel: Adjust text tab size in `emacs` --- hosts/pinwheel/modules/emacs/config.org | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hosts/pinwheel/modules/emacs/config.org b/hosts/pinwheel/modules/emacs/config.org index c95f8cb..19c5c90 100644 --- a/hosts/pinwheel/modules/emacs/config.org +++ b/hosts/pinwheel/modules/emacs/config.org @@ -236,7 +236,7 @@ #+BEGIN_SRC emacs-lisp (setq calendar-week-start-day 1) #+END_SRC -** Tabs +** UI Tabs *** Enable tabs #+BEGIN_SRC emacs-lisp (tab-bar-mode 1) @@ -256,7 +256,10 @@ (advice-add #'evil-quit :around #'alex/close-tab) #+END_SRC - +** Text tabs +#+BEGIN_SRC emacs-lisp + (setq-default tab-width 4) +#+END_SRC * Completion ** Consult Consult provides search and navigation commands based on the Emacs completion function completing-read.