Emacs config utilizing prelude as a base
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
454 B

(when (not package-archive-contents)
(package-refresh-contents))
(defvar prelude-packages '(auctex clojure-mode coffee-mode gist haml-mode
haskell-mode magit markdown-mode paredit
sass-mode yasnippet)
"A list of packages to ensure are installed at launch.")
(dolist (p prelude-packages)
(when (not (package-installed-p p))
(package-install p)))
(provide 'packages-prelude)