From f6426c6dfe3cb0381147eb9bbf07294e72bf2f2a Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Sun, 24 Apr 2022 10:51:35 -0400 Subject: [PATCH] ENH don't use undo fu --- etc/conf.org | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/etc/conf.org b/etc/conf.org index b9828a7..41bbc4f 100644 --- a/etc/conf.org +++ b/etc/conf.org @@ -4009,17 +4009,13 @@ I like being evil, which means I think vim is a good editor and emacs is a good :ID: 07d06b91-fa97-41f5-8d12-ac0d1e86c988 :END: #+BEGIN_SRC emacs-lisp -(use-package undo-fu - :straight t) - (use-package evil :straight t - :after undo-fu :init ;; this is required to make evil collection work (setq evil-want-integration t evil-want-keybinding nil - evil-undo-system 'undo-fu) + evil-undo-system 'undo-redo) :config (evil-mode 1)) #+END_SRC