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)