Skip to content

Instantly share code, notes, and snippets.

@antifuchs
Created December 17, 2013 19:13
Show Gist options
  • Save antifuchs/8010871 to your computer and use it in GitHub Desktop.
Save antifuchs/8010871 to your computer and use it in GitHub Desktop.
My new ~/.emacs.d/init.el
;;;; asf's emacs config
;;; Packages:
(require 'package)
(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/")
("marmalade" . "http://marmalade-repo.org/packages/")
("melpa" . "http://melpa.milkbox.net/packages/")))
(package-initialize)
;;; Bootstrap package config:
(when (not package-archive-contents)
(package-refresh-contents))
;;; Now, load the babylonian emacs config:
(require 'org)
(org-babel-load-file (concat (getenv "HOME") "/.emacs.d/config.org"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment