fix(editor/undo): increase undo limits when using undo-fu

Turns out undo-tree massively increases undo limits, and the defaults
seem to cut off history for me much sooner than I'd like. So I set the
limits to the same high values are undo-tree does.
This commit is contained in:
2022-06-18 00:25:18 +01:00
parent c5010120da
commit 5b054bdd07

View File

@@ -16,7 +16,13 @@
:custom
(undo-fu-allow-undo-in-region nil)
(undo-fu-ignore-keyboard-quit t))
(undo-fu-ignore-keyboard-quit t)
;; Customize undo limits to ensure lots of history is retained, essentially
;; settings limits to the same values as undo-tree does.
(undo-limit 80000000)
(undo-strong-limit 120000000)
(undo-outer-limit 360000000))
(provide 'siren-undo-fu)
;;; siren-undo-fu.el ends here