[Emacs] Add vundo
This commit is contained in:
@@ -3680,24 +3680,10 @@ I had to disable this mode because something that it does messes with coding set
|
|||||||
(progn
|
(progn
|
||||||
(add-hook 'prog-mode-hook (lambda () (rainbow-delimiters-mode t)))))
|
(add-hook 'prog-mode-hook (lambda () (rainbow-delimiters-mode t)))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** undo-tree
|
** vundo
|
||||||
Disabled because it makes it hard to redo things
|
#+begin_src emacs-lisp
|
||||||
#+BEGIN_SRC emacs-lisp
|
(use-package vundo)
|
||||||
(use-package undo-tree
|
#+end_src
|
||||||
:disabled t
|
|
||||||
:bind (("C--" . undo-redo)
|
|
||||||
("C-c u" . undo-tree-visualize)
|
|
||||||
("C-c r" . undo-tree-redo))
|
|
||||||
:config
|
|
||||||
(diminish 'undo-tree-mode)
|
|
||||||
: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
|
|
||||||
** recentf
|
** recentf
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package recentf
|
(use-package recentf
|
||||||
|
|||||||
Reference in New Issue
Block a user