From 8873b1f982d306bf03e0dfbda901d6229315a2ed Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Sun, 22 Oct 2023 16:20:46 +0200 Subject: [PATCH] pinwheel: Fix build error related to `savehist` No need to call it with `use-package` as it is built in --- hosts/pinwheel/modules/emacs/config.org | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hosts/pinwheel/modules/emacs/config.org b/hosts/pinwheel/modules/emacs/config.org index 6a9e052..beee6a0 100644 --- a/hosts/pinwheel/modules/emacs/config.org +++ b/hosts/pinwheel/modules/emacs/config.org @@ -306,9 +306,8 @@ https://github.com/justbur/emacs-which-key ** Buffer history `savehist` saves buffer history #+BEGIN_SRC emacs-lisp - (use-package savehist - :init - (savehist-mode)) + (setq history-length 25) + (savehist-mode 1) #+END_SRC ** Vertico #+BEGIN_SRC emacs-lisp