From 07cf5f2e0d1fc3409227fc58f23e148841b0f48e Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Sat, 11 Sep 2021 09:13:45 -0400 Subject: [PATCH] Update evil config --- README.org | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index 5e0091e..bca1d14 100644 --- a/README.org +++ b/README.org @@ -1762,7 +1762,8 @@ The next time Emacs[fn:2] is started, it will come up in /normal state/, denoted #+BEGIN_SRC emacs-lisp ;; Enable the Extensible VI Layer for Emacs. (setq evil-want-integration t ;; Required for `evil-collection.' - evil-want-keybinding nil) ;; Same as above. + evil-want-keybinding nil ;; Same as above. + evil-want-C-i-jump nil) ;; Disable jumping in terminal. (evil-mode +1) ;; Configure `evil-collection'. @@ -1773,6 +1774,9 @@ The next time Emacs[fn:2] is started, it will come up in /normal state/, denoted ;; Configure `evil-nerd-commenter'. (global-set-key (kbd "M-;") 'evilnc-comment-or-uncomment-lines) + +;; Invoke `org-cycle' in normal mode inside of `org-mode' buffers. +(evil-define-key 'normal 'org-mode-map (kbd "") #'org-cycle) #+END_SRC ** EXWM