Skip to content

Instantly share code, notes, and snippets.

@metaperl
Created June 28, 2010 13:46
Show Gist options
  • Select an option

  • Save metaperl/455853 to your computer and use it in GitHub Desktop.

Select an option

Save metaperl/455853 to your computer and use it in GitHub Desktop.
;;; init.el --- Where all the magic begins
;; This is the first thing to get loaded.
;; inspired by technomancy's emacs starter kit
;; http://github.com/technomancy/emacs-starter-kit/blob/master/init.el
(setq debug-on-error t)
(add-to-list 'load-path "~/emacs/")
(add-to-list 'load-path "~/emacs/init/")
(add-to-list 'load-path "~/emacs-contrib/")
(require 'emacs-contrib)
(load "local")
(require 'init-functions)
(require 'init-emacs)
(require 'init-set-key)
(require 'init-settings)
(require 'init-standard-packages)
(require 'init-windows-xp)
(require 'init-window-system)
;; "Emacs outshines all other editing software in approximately the
;; same way that the noonday sun does the stars. It is not just bigger
;; and brighter; it simply makes everything else vanish."
;; -Neal Stephenson, "In the Beginning was the Command Line"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment