pinwheel: Fix build error related to savehist

No need to call it with `use-package` as it is built in
This commit is contained in:
Alexander Heldt
2023-10-22 16:20:46 +02:00
parent c2ef36c21b
commit 8873b1f982

View File

@@ -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