add commentary pkg

This commit is contained in:
petrucci4prez 2018-09-06 20:37:44 -04:00
parent c6b76bded2
commit 76a7010487
1 changed files with 41 additions and 24 deletions

View File

@ -1865,6 +1865,23 @@ delightfully ripped off from vim plugins
:config
(global-evil-surround-mode 1))
#+END_SRC
**** commentary
#+BEGIN_SRC emacs-lisp
(use-package evil-commentary
:ensure t
:after evil
:delight
:config
(evil-commentary-mode))
#+END_SRC
**** replace with register
#+BEGIN_SRC emacs-lisp
(use-package evil-replace-with-register
:ensure t
:after evil
:config
(evil-replace-with-register-install))
#+END_SRC
*** unbind emacs keys
Some of these commands just get in the way of being evil (which really means that I keep pressing them on accident). Rather than nullifying them completely, tuck them away in the emacs state map in case I actually want them.
#+BEGIN_SRC emacs-lisp