24 lines
567 B
EmacsLisp
24 lines
567 B
EmacsLisp
;;; epilogue.el --- Emacs init epilogue
|
|
;;; Commentary:
|
|
;;; Code:
|
|
|
|
(eval-when-compile
|
|
(load (expand-file-name "prologue.el" user-emacs-directory))
|
|
(require 'init-emacs))
|
|
|
|
;; Load user's machine-local configuration file, if available.
|
|
(when (file-exists-p *user-local-init*)
|
|
(load *user-local-init*))
|
|
|
|
|
|
;; Load custom after all packages have been installed.
|
|
(when (file-exists-p *user-custom-file*)
|
|
(load *user-custom-file*))
|
|
|
|
|
|
;; Disable collection of benchmark data.
|
|
(when (featurep 'benchmark-init)
|
|
(benchmark-init/deactivate))
|
|
|
|
;;; epilogue.el ends here
|