summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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