From fc7c5347478d9243333eb019c9b60017aaf0a47b Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Thu, 2 Jan 2020 10:55:34 -0500 Subject: [PATCH] Add evil-commentary --- emacs/init.org | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/emacs/init.org b/emacs/init.org index 822a1b1..a465987 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -193,6 +193,13 @@ Use the spacebar as a leader key in evil-mode's normal state and in various othe (add-hook 'pass-mode-hook 'turn-off-evil-snipe-mode))) #+END_SRC +** evil-commentary +Adds Evil commands to comment out lines of code: +#+BEGIN_SRC emacs-lisp + (use-package evil-commentary + :after (evil) + :config (evil-commentary-mode)) +#+END_SRC ** Additional keybindings #+BEGIN_SRC emacs-lisp (general-def 'normal "zM" #'hs-hide-level :keymaps 'override)