add commentary pkg
This commit is contained in:
parent
c6b76bded2
commit
76a7010487
17
conf.org
17
conf.org
|
@ -1865,6 +1865,23 @@ delightfully ripped off from vim plugins
|
||||||
:config
|
:config
|
||||||
(global-evil-surround-mode 1))
|
(global-evil-surround-mode 1))
|
||||||
#+END_SRC
|
#+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
|
*** 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.
|
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
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
|
Loading…
Reference in New Issue