Add cleverparens to all the languages
May not appreciate this.
This commit is contained in:
parent
1e8e04a4c4
commit
f703b6a151
1 changed files with 10 additions and 9 deletions
|
@ -283,7 +283,7 @@ However, most of my Emacs Lisp code is in literate org files.
|
|||
The [[https://github.com/luxbock/evil-cleverparens][evil-cleverparens]] solves having me create keybindings to the [[https://github.com/Fuco1/smartparens][smartparens]] project by updating the evil states with Lisp-specific bindings.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package evil-cleverparens
|
||||
(use-package evil-cleverparens
|
||||
:after smartparens-mode
|
||||
:custom
|
||||
evil-cleverparens-use-additional-bindings t
|
||||
|
@ -293,7 +293,8 @@ The [[https://github.com/luxbock/evil-cleverparens][evil-cleverparens]] solves h
|
|||
:init
|
||||
(require 'evil-cleverparens-text-objects)
|
||||
|
||||
:hook (emacs-lisp-mode . evil-cleverparens-mode))
|
||||
:hook (prog-mode . evil-cleverparens-mode)) ;; All the languages!
|
||||
;; Otherwise: (emacs-lisp-mode . evil-cleverparens-mode)
|
||||
#+END_SRC
|
||||
|
||||
I would like to have a list of what keybindings do what:
|
||||
|
|
Loading…
Reference in a new issue