Created
December 17, 2013 19:13
-
-
Save antifuchs/8010871 to your computer and use it in GitHub Desktop.
My new ~/.emacs.d/init.el
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;; 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