From cae343742c6eb360f05d13d7bf5d042b7955fcf0 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Tue, 24 Nov 2020 09:45:40 -0500 Subject: [PATCH] FIX use undo-fu since I don't have emacs 28 --- etc/conf.org | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/etc/conf.org b/etc/conf.org index f59ff79..74cc901 100644 --- a/etc/conf.org +++ b/etc/conf.org @@ -3910,14 +3910,17 @@ I like being evil. All package and custom bindings go here. :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 now integrates with undo-tree - evil-undo-system 'undo-redo) + evil-undo-system 'undo-fu) :config (evil-mode 1)) #+END_SRC