;; -*- mode:emacs-lisp -*- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Emacs config ;; 2013-01-09 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Main should be loaded first. (load "~/.emacs.d/main" nil t) (add-to-list 'load-path "~/.emacs.d/plugins") (load "~/.emacs.d/functions" nil t) (load "~/.emacs.d/modes" nil t) (load "~/.emacs.d/personal" nil t) (load "~/.emacs.d/plugins" nil t) (load "~/.emacs.d/theme" nil t) ;; We need to put it at the end to make sure it doesn't get itself overriden by ;; other minor modes. (my-keys-minor-mode 1) ;; End of file ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;