Created
June 28, 2010 13:46
-
-
Save metaperl/455853 to your computer and use it in GitHub Desktop.
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
| ;;; 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