aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--emacs/.emacs.d/init.org6
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index 37c75d1..9a6795a 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -1036,6 +1036,12 @@ Computing Environment".
(add-hook 'clojure-mode-hook 'paredit-mode)
#+END_SRC
+ Enable rainbow delimiters.
+
+ #+BEGIN_SRC emacs-lisp
+ (add-hook 'clojure-mode-hook 'rainbow-delimiters-mode)
+ #+END_SRC
+
Use the clojure repl as the inferior lisp mode.
#+BEGIN_SRC emacs-lisp