diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-02 09:30:08 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-02 09:30:08 +0100 |
commit | 61bd8a338f47487e507388e2b03d0b9ab36d23fb (patch) | |
tree | a6a39bcb409825fa644b2a1fe81ad185f228fd9c | |
parent | 7653b010a02abba0375692031956451d299f24af (diff) |
Revert "smartparens changes."
This reverts commit 7653b010a02abba0375692031956451d299f24af.
-rw-r--r-- | init.org | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -961,10 +961,10 @@ Also enable =smartparens= when editing Elisp in the minibuffer. Some customisations for =smartparens=. #+BEGIN_SRC elisp -(require 'smartparens) +(eval-when-compile + (require 'smartparens)) (with-eval-after-load "smartparens" - (require 'smartparens-config) - (smartparens-strict-mode 1) + (setq smartparens-strict-mode t) (sp-use-paredit-bindings)) #+END_SRC |