technomancy / emacs-starter-kit

[ARCHIVED] this is ancient history
GNU General Public License v3.0
2.86k stars 887 forks source link

add highlight-parentheses-mode for clojure #93

Closed srid closed 12 years ago

srid commented 13 years ago

I had to do this:

;; parentheses friendly
;; http://stackoverflow.com/questions/2413047/
(add-hook 'clojure-mode-hook 'highlight-parentheses-mode)
(setq hl-paren-colors
      '(;"#8f8f8f" ; this comes from Zenburn
                   ; and I guess I'll try to make the far-outer parens look like this
        "orange1" "yellow1" "greenyellow" "green1"
        "springgreen1" "cyan1" "slateblue1" "magenta1" "purple"))
dgutov commented 12 years ago

I don't think this should be added. Not everyone likes the explosion of colors. For the purposes of paren-matching, we already have paredit.

srid commented 12 years ago

Fair enough.