This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
spacemacs/layers/+vim/evil-cleverparens/README.org

24 lines
937 B
Org Mode

#+TITLE: Evil-Cleverparens layer
#+HTML_HEAD_EXTRA: <link rel="stylesheet" type="text/css" href="../../../css/readtheorg.css" />
* 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 configuration layer, add it to your =~/.spacemacs=. You will need to
add =evil-cleverparens= to the existing =dotspacemacs-configuration-layers= list in this
file.
Then enable it in your =user-config= function:
#+BEGIN_SRC emacs-lisp
(spacemacs/toggle-evil-cleverparens-on)
#+END_SRC