summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2021-12-02 09:29:01 +0100
committerRicardo Wurmus <rekado@elephly.net>2021-12-02 09:29:01 +0100
commit7653b010a02abba0375692031956451d299f24af (patch)
treeb23822dd22c72ccc76e3ae00330d4297aca02bd4
parent3f2fcbe724649a56f87d0014d5c7d616513109fb (diff)
smartparens changes.
-rw-r--r--init.org6
1 files changed, 3 insertions, 3 deletions
diff --git a/init.org b/init.org
index 5d32d0b..0fa5d5a 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
-(eval-when-compile
- (require 'smartparens))
+(require 'smartparens)
(with-eval-after-load "smartparens"
- (setq smartparens-strict-mode t)
+ (require 'smartparens-config)
+ (smartparens-strict-mode 1)
(sp-use-paredit-bindings))
#+END_SRC