First commit.
This commit is contained in:
23
epilogue.el
Normal file
23
epilogue.el
Normal file
@@ -0,0 +1,23 @@
|
||||
;;; 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
|
Reference in New Issue
Block a user