mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user