mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
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.
19 lines
297 B
EmacsLisp
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
|