Skip to content

Instantly share code, notes, and snippets.

@drankard
Created November 7, 2010 12:50
Show Gist options
  • Save drankard/666106 to your computer and use it in GitHub Desktop.
Save drankard/666106 to your computer and use it in GitHub Desktop.
setup elpa package manager M-x ielm and paste
(let ((buffer (url-retrieve-synchronously
"http://tromey.com/elpa/package-install.el")))
(save-excursion
(set-buffer buffer)
(goto-char (point-min))
(re-search-forward "^$" nil 'move)
(eval-region (point) (point-max))
(kill-buffer (current-buffer))))
@drankard
Copy link
Author

drankard commented Nov 7, 2010

select with "i" x to install

i select:
clojure-mode
highlight-parentheses
slime
swank-clojure

then add
:dev-dependencies [[swank-clojure "1.2.1"]]

to the project.clj

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment