dotfiles/emacs/.emacs.d/config/init-undo.el

10 lines
199 B
EmacsLisp
Raw Normal View History

2021-02-21 02:59:11 +00:00
;; -*- lexical-binding: t; -*-
2022-04-06 15:28:06 +00:00
(use-package undo-fu)
(use-package undohist
2022-04-06 17:34:44 +00:00
:hook (after-init . undohist-initialize)
:custom
(undohist-ignored-files '("COMMIT_EDITMSG")))
2021-02-20 19:58:09 +00:00
(provide 'init-undo)