public
Description: A mac-oriented emacs configuration bundle with batteries included: check out as ~/.emacs.d
Homepage: http://www.sanityinc.com/
Clone URL: git://github.com/purcell/emacs.d.git
emacs.d / init-clojure.el
100644 12 lines (8 sloc) 0.294 kb
1
2
3
4
5
6
7
8
9
10
11
12
(require 'swank-clojure-autoload)
 
(setq clojure-src-root (expand-file-name "~/Projects/External"))
(eval-after-load 'clojure-mode '(clojure-slime-config))
 
(defun slime-clojure ()
  "Fire up slime running the swank-clojure backend"
  (interactive)
  (slime 'clojure))
 
(provide 'init-clojure)