Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. (require 'package)
  2. (add-to-list 'package-archives
  3. '("marmalade" . "http://marmalade-repo.org/packages/"))
  4. (add-to-list 'package-archives
  5. '("melpa" . "http://melpa.org/packages/"))
  6. (add-to-list 'package-archives
  7. '("org" . "http://orgmode.org/elpa/"))
  8.  
  9. (package-initialize)
  10. (defvar my-packages '(clojure-mode
  11. cider
  12. ac-cider))
  13. (dolist (p my-packages)
  14. (when (not (package-installed-p p))
  15. (package-install p)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement