Housekeeping
Some checks failed
/ Test config on 20 (push) Failing after 44s

- Keep longer undo data, I have run into situations where the history
is too short.
- Clean up undo/redo key bindings.
- Try to make the dashboard package load async and faster. I have seen
it block more than once.
This commit is contained in:
Maciej 2025-01-02 07:58:01 +02:00
parent bd87a9f883
commit 3ffb484fd8
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
4 changed files with 214 additions and 205 deletions

View file

@ -10,8 +10,11 @@
;;; Code:
;;;;;;;;;;;;;;;;; Use more advanced undo options
(use-package vundo :ensure t :defer t)
;; Undo UI
(use-package vundo :ensure t :defer t
:config
;; Keep 64 MB of undo data, we have enough RAM to do this.
(setopt undo-limit (* 64 1024 1024)))
(provide 'icejam-vundo)
;;; icejam-vundo.el ends here