summaryrefslogtreecommitdiff
path: root/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'init.org')
-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