aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2017-12-29 10:22:27 -0800
committerGravatar Tom Willemse2017-12-29 10:22:27 -0800
commit5ded88ba03e0bfa5306946d1345a2fff0645ba65 (patch)
tree863a4da8d2c44cba8281b59f62b0f1a52d64e6c9 /emacs
parentca84605d4e8f6f9b5779591d89ffe99684df8ae0 (diff)
downloadnew-dotfiles-5ded88ba03e0bfa5306946d1345a2fff0645ba65.tar.gz
new-dotfiles-5ded88ba03e0bfa5306946d1345a2fff0645ba65.zip
Add rainbow delimiters to clojure-mode
Diffstat (limited to 'emacs')
-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