[Emacs] Increase undo-limit and use undo-tree

This commit is contained in:
Ivan Malison 2017-10-25 20:18:33 -07:00
parent e1cee91d5e
commit d3114467f5
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -4176,7 +4176,6 @@ I had to disable this mode because something that it does messes with coding set
** undo-tree
#+BEGIN_SRC emacs-lisp
(use-package undo-tree
:disabled t ;; this has been getting pretty annoying
:bind (("C--" . undo-redo)
("C-c u" . undo-tree-visualize)
("C-c r" . undo-tree-redo))
@ -4185,6 +4184,8 @@ I had to disable this mode because something that it does messes with coding set
:init
(progn
;;(setq undo-tree-visualizer-diff t) ;; This causes performance problems
(setq undo-limit (expt 2 25)
undo-strong-limit (expt 2 25))
(global-undo-tree-mode)
(setq undo-tree-visualizer-timestamps t)))
#+END_SRC