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