Browse Source

Update evil config

main
parent
commit
07cf5f2e0d
Signed by: chris GPG Key ID: 3025DCBD46F81C0F
  1. 6
      README.org

6
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 #+BEGIN_SRC emacs-lisp
;; Enable the Extensible VI Layer for Emacs. ;; Enable the Extensible VI Layer for Emacs.
(setq evil-want-integration t ;; Required for `evil-collection.' (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) (evil-mode +1)
;; Configure `evil-collection'. ;; 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'. ;; Configure `evil-nerd-commenter'.
(global-set-key (kbd "M-;") 'evilnc-comment-or-uncomment-lines) (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 "<tab>") #'org-cycle)
#+END_SRC #+END_SRC
** EXWM ** EXWM

Loading…
Cancel
Save