Use vundo instead of undo-tree
Some checks are pending
/ Test config on ${{matrix.node}} (20) (push) Waiting to run

This commit is contained in:
Maciej 2024-07-22 07:48:02 +03:00
parent 9f73e90317
commit 5044e50b03
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
2 changed files with 3 additions and 12 deletions

View file

@ -11,18 +11,9 @@
;;; Code:
;;;;;;;;;;;;;;;;; Use more advanced undo options
(use-package undo-tree
:defer t
(use-package vundo
:straight t
:config (setq-default
;; Save history to a specific folder
undo-tree-history-directory-alist '(("." . "~/.emacs.d/backups/undo-tree"))
;; Show diff
undo-tree-visualizer-diff t
;; Show timestamps
undo-tree-visualizer-timestamps t))
(global-undo-tree-mode t)
:defer t)
(provide '+custom-pkg-undo-tree)
;;; undo-tree.el ends here