spacemacs/layers/+vim/evil-cleverparens/README.org

28 lines
924 B
Org Mode
Raw Normal View History

#+TITLE: Evil-Cleverparens layer
#+HTML_HEAD_EXTRA: <link rel="stylesheet" type="text/css" href="../../../css/readtheorg.css" />
2015-08-24 23:32:31 +00:00
* Table of Contents :TOC_4_org:noexport:
- [[Description][Description]]
- [[Install][Install]]
* Description
This simple layer adds the [[https://github.com/luxbock/evil-cleverparens][evil-cleverparens]] package, which overrides common
normal-mode vim commands like D, dd, c, etc. to keep parentheses balanced. See
the repository for more details. All the layer does right now is to add a hook
to load evil-cleverparens with emacs-lisp-mode.
* Install
To use this contribution add it to your =~/.spacemacs=.
#+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers '(evil-cleverparens))
#+END_SRC
Then enable it in your =user-config= function:
#+BEGIN_SRC emacs-lisp
(spacemacs/toggle-evil-cleverparens-on)
#+END_SRC