Skip to content

Instantly share code, notes, and snippets.

@viksit
viksit / clojure-font-lock-setup.el
Created April 1, 2010 21:23 — forked from michalmarczyk/clojure-font-lock-setup.el
Integrating clojure-mode indentation and colors into slime
;;; all code in this function lifted from the clojure-mode function
;;; from clojure-mode.el
(defun clojure-font-lock-setup ()
(interactive)
(set (make-local-variable 'lisp-indent-function)
'clojure-indent-function)
(set (make-local-variable 'lisp-doc-string-elt-property)
'clojure-doc-string-elt)
(set (make-local-variable 'font-lock-multiline) t)