From 0d596249cc1b570001cd6cecc26409787a864272 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Sun, 19 Jan 2020 23:41:00 -0500 Subject: [PATCH] Enable smartparens-strict-mode in SLIME REPL --- emacs/init.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emacs/init.org b/emacs/init.org index c37ca2b..3399390 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -2410,7 +2410,8 @@ And a handy shortcut to hop into a Geiser REPL: slime-company)) (when (file-exists-p (expand-file-name "~/quicklisp/slime-helper.el")) - (load (expand-file-name "~/quicklisp/slime-helper.el")))) + (load (expand-file-name "~/quicklisp/slime-helper.el"))) + (add-hook 'slime-repl-mode-hook 'smartparens-strict-mode)) (add-to-list 'auto-mode-alist '("\\.cl\\'" . lisp-mode)) #+END_SRC