Load custom file last

This commit is contained in:
Jeremy Dormitzer 2021-03-03 09:27:34 -05:00
parent 4ddf25b19c
commit 32588d9d39

View File

@ -49,8 +49,6 @@
;; Don't use this file as the custom-file
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
(when (file-exists-p custom-file)
(load custom-file 'noerror 'nomessage))
;; Load config modules
(add-to-list 'load-path (expand-file-name "config" user-emacs-directory))
@ -90,3 +88,6 @@
(require 'init-email)
(require 'init-kubernetes)
(require 'init-epub)
(when (file-exists-p custom-file)
(load custom-file 'noerror 'nomessage))