diff --git a/.config/emacs/config.el b/.config/emacs/config.el index 9dd7506..6e98ac2 100644 --- a/.config/emacs/config.el +++ b/.config/emacs/config.el @@ -73,10 +73,11 @@ ;; Expands to: (elpaca evil (use-package evil :demand t)) (use-package evil :init ;; tweak evil's configuration before loading it - (setq evil-want-integration t) ;; This is optional since it's already set to t by default. - (setq evil-want-keybinding nil) - (setq evil-vsplit-window-right t) - (setq evil-split-window-below t) + (setq evil-want-integration t ;; This is optional since it's already set to t by default. + evil-want-keybinding nil + evil-vsplit-window-right t + evil-split-window-below t + evil-undo-system 'undo-redo) (evil-mode)) (use-package evil-collection :after evil diff --git a/.config/emacs/config.org b/.config/emacs/config.org index 9913567..a754fe5 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -165,10 +165,11 @@ This package implements hiding or abbreviation of the modeline displays (lighter ;; Expands to: (elpaca evil (use-package evil :demand t)) (use-package evil :init ;; tweak evil's configuration before loading it - (setq evil-want-integration t) ;; This is optional since it's already set to t by default. - (setq evil-want-keybinding nil) - (setq evil-vsplit-window-right t) - (setq evil-split-window-below t) + (setq evil-want-integration t ;; This is optional since it's already set to t by default. + evil-want-keybinding nil + evil-vsplit-window-right t + evil-split-window-below t + evil-undo-system 'undo-redo) ;; Adds vim-like C-r redo functionality (evil-mode)) (use-package evil-collection :after evil