Files
.emacs.d/modules/editor/siren-vundo.el
Jim Myhrberg 177f075853 feat(editor): replace undo-tree with undo-fu and vundo
Also replace undohist with undo-fu-session.

Overall this seems to yield a more reliable undo history, as undo-fu and
vundo supposedly operate with vanilla emacs undo history state, while
undo-tree supposedly does some custom tweaks to the undo state.
2022-04-26 23:39:48 +01:00

19 lines
297 B
EmacsLisp

;;; siren-vundo.el --- jimeh's Emacs Siren: vundo configuration.
;;; Commentary:
;; Basic configuration for vundo.
;;; Code:
(use-package vundo
:demand
:general
("C-x u" 'vundo)
:custom
(vundo-glyph-alist vundo-unicode-symbols))
(provide 'siren-vundo)
;;; siren-vundo.el ends here