From 2e2b208c23dd1169ce5ecbf42b6802df436ccedc Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 8 Mar 2025 16:36:01 +0100 Subject: [PATCH] Remember why we load customizations so late MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit So I don't have to ponder on this again the next time I see this … --- init.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.el b/init.el index 3255db6..86e3662 100644 --- a/init.el +++ b/init.el @@ -2926,6 +2926,12 @@ eventuelly be set to nil, however)." ;; * Load customizations +;; We do this late in init.el to really make sure that whatever happened previously can be +;; overwritten by user customizations. This might not be strictly necessary, as +;; `custom-set-variables' and friends should only install user customizations, without evaluating +;; them … but let's better be safe than sorry). One could even think about adding this to +;; `db/run-init', but this might be too late. + (when (file-exists-p custom-file) (load-file custom-file))