Files
.emacs.d/modules/editor/siren-undohist.el
Jim Myhrberg 6888df47c6 fix(editor): Improve reliability of undo history
The undo history feature of undo-tree has been very unreliable lately,
to the point it fails to load undo history for nearly every file.

It seems the undohist package is a lot more reliable.
2020-02-04 10:08:41 +00:00

20 lines
391 B
EmacsLisp

;;; siren-undohist.el --- jimeh's Emacs Siren: undohist configuration.
;;; Commentary:
;; Basic configuration for undohist.
;;; Code:
(use-package undohist
:demand
:custom
(undohist-directory (expand-file-name "undohist" siren-cache-dir))
(undohist-ignored-files '("COMMIT_EDITMSG"))
:config
(undohist-initialize))
(provide 'siren-undohist)
;;; siren-undohist.el ends here