.emacs 886 B

1234567891011121314151617181920212223
  1. ;;; .emacs --- Configuration File.
  2. ;;; commentary:
  3. ; This is going to pull all the configuration and custom elisp in from
  4. ; sources in my ~/.emacs.d/elisp directory. All the code loaded in
  5. ; should be free software (GPL v3 compatabile) and if no author
  6. ; information given assumed to be my own. Please feel free to contact
  7. ; me if you see anything which isn't Free software and/or properly
  8. ; attributed to it's original author.
  9. ;; ---------------------------------------------------------------------
  10. ;;; code:
  11. (load-file "~/.config/emacs/elisp/el-get.el")
  12. (load-file "~/.config/emacs/elisp/general.el")
  13. (load-file "~/.config/emacs/elisp/mu4e.el")
  14. (load-file "~/.config/emacs/elisp/org.el")
  15. (load-file "~/.config/emacs/elisp/licencechooser.el")
  16. (load-file "~/.config/emacs/elisp/smarts.el")
  17. (load-file "~/.config/emacs/elisp/brief-theme.el")
  18. (provide '.emacs)
  19. ;;; .emacs ends here