Skip to content

Instantly share code, notes, and snippets.

@rightfold

rightfold/.emacs Secret

Created March 2, 2014 17:50
Show Gist options
  • Save rightfold/38f1032646836de9df1d to your computer and use it in GitHub Desktop.
Save rightfold/38f1032646836de9df1d to your computer and use it in GitHub Desktop.
(require 'package)
(add-to-list 'package-archives
'("marmalade" . "http://marmalade-repo.org/packages/"))
(package-initialize)
(load "~/.emacs.d/packages.el")
(dolist (p packages)
(when (not (package-installed-p p))
(package-install p)))
(defvar packages
'(clojure-mode
clojure-test-mode))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment