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.
18 lines
597 B
18 lines
597 B
(require 'package)
|
|
(add-to-list 'package-archives
|
|
'("marmalade" . "http://marmalade-repo.org/packages/") t)
|
|
(package-initialize)
|
|
|
|
(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)
|