From 5342b46210f199f43048804c0da3d452144c3d21 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 16 Jan 2017 10:16:46 +0100 Subject: Enable paredit for lisp-mode as well. --- init.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'init.org') diff --git a/init.org b/init.org index 27ed6c4..1e0770c 100644 --- a/init.org +++ b/init.org @@ -920,11 +920,12 @@ Emacs also highlights matching parentheses, but it does so with a delay. Here I (show-paren-mode 1) #+END_SRC -Editing lispy languages is no fun without =paredit=, a mode to enforce balanced parentheses. Enable it automatically when editing Scheme or Elisp. +Editing lispy languages is no fun without =paredit=, a mode to enforce balanced parentheses. Enable it automatically when editing Scheme, Common Lisp, or Elisp. #+BEGIN_SRC elisp (add-hook 'scheme-mode-hook (lambda () (paredit-mode 1))) (add-hook 'emacs-lisp-mode-hook (lambda () (paredit-mode 1))) +(add-hook 'lisp-mode-hook (lambda () (paredit-mode 1))) (add-hook 'geiser-repl-mode-hook (lambda () (paredit-mode 1))) #+END_SRC -- cgit v1.2.3