summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2021-12-02 09:30:08 +0100
committerRicardo Wurmus <rekado@elephly.net>2021-12-02 09:30:08 +0100
commit61bd8a338f47487e507388e2b03d0b9ab36d23fb (patch)
treea6a39bcb409825fa644b2a1fe81ad185f228fd9c
parent7653b010a02abba0375692031956451d299f24af (diff)
Revert "smartparens changes."
This reverts commit 7653b010a02abba0375692031956451d299f24af.
-rw-r--r--init.org6
1 files changed, 3 insertions, 3 deletions
diff --git a/init.org b/init.org
index 0fa5d5a..5d32d0b 100644
--- a/init.org
+++ b/init.org
@@ -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