Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixes clojure mode to use vendor esk-lisp and breaks out elisp custom…
…izations
  • Loading branch information
bmabey committed Jan 17, 2012
1 parent d3ff2aa commit 1e97a28
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 3 additions & 5 deletions initializers.available/clojure.el
@@ -1,15 +1,13 @@
(ensure-packages-installed
'(starter-kit starter-kit-lisp
'(elisp-slime-nav ;; remove once we can add starter-kit back in...
;; starter-kit-lisp ;; comment in once new starter-kit has been pushed to marmalade
clojure-mode midje-mode clojure-test-mode slime
highlight-parentheses))

(require 'highlight-parentheses)
(require 'starter-kit-lisp)
(require 'highlight-parentheses)

(add-hook 'clojure-mode-hook 'highlight-parentheses-mode)
(add-hook 'slime-repl-mode-hook 'highlight-parentheses-mode)

;; not really clojure... should move..
(add-hook 'emacs-lisp-mode-hook (lambda () (highlight-parentheses-mode)))

(add-hook 'slime-repl-mode-hook 'clojure-mode-font-lock-setup)
9 changes: 9 additions & 0 deletions initializers.available/elisp.el
@@ -0,0 +1,9 @@
(ensure-packages-installed
'(elisp-slime-nav ;; remove once we can add starter-kit back in...
;; starter-kit-lisp ;; comment in once new starter-kit has been pushed to marmalade
highlight-parentheses))

(require 'starter-kit-lisp)
(require 'highlight-parentheses)

(add-hook 'emacs-lisp-mode-hook (lambda () (highlight-parentheses-mode)))
1 change: 1 addition & 0 deletions initializers.enabled/elisp.el

0 comments on commit 1e97a28

Please sign in to comment.