summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-04-02 10:42:41 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-04-02 10:42:41 -0700
commitf5d1ea9e03ea0bec72b0bf21d13e923737471a44 (patch)
tree9bafff00eac34c5e0d9b26845a3941268887ad19
parent9d653a50187ca516ea069640d25762ec297b2892 (diff)
downloaddotfiles-f5d1ea9e03ea0bec72b0bf21d13e923737471a44.tar.gz
enable paredit in the Sly repl
-rw-r--r--.emacs.d/init-spw.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/.emacs.d/init-spw.el b/.emacs.d/init-spw.el
index a8b71498..c0de55db 100644
--- a/.emacs.d/init-spw.el
+++ b/.emacs.d/init-spw.el
@@ -2302,7 +2302,9 @@ mutt's review view, after exiting EDITOR."
(with-eval-after-load 'xscheme
(add-to-list 'xscheme-start-hook 'enable-paredit-mode))
(with-eval-after-load 'slime-repl
- (add-to-list 'slime-repl-mode-hook 'enable-paredit-mode)))
+ (add-to-list 'slime-repl-mode-hook 'enable-paredit-mode))
+ (with-eval-after-load 'sly-mrepl
+ (add-to-list 'sly-mrepl-hook 'enable-paredit-mode)))
(with-eval-after-load 'paredit
(diminish 'paredit-mode)