From b5bea68a67627ed6d2a8658e9dad0965b3c4d0aa Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Wed, 23 Jul 2025 19:03:15 -0400 Subject: [PATCH] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e20c1d5..6ab66b3 100644 --- a/README.md +++ b/README.md @@ -1492,8 +1492,11 @@ In Emacs, customization variables modified via the UI (e.g., `M-x customize`) ar To accomplish this, add the following form to your `~/.emacs.d/post-init.el`: ```elisp -(when (file-exists-p custom-file) - (load custom-file)) +;; In Emacs, customization variables modified via the UI (e.g., M-x customize) +;; are typically stored in a separate file, commonly named 'custom.el'. To +;; ensure these settings are loaded during Emacs initialization, it is necessary +;; to explicitly load this file if it exists. +(load custom-file 'noerror 'no-message) ``` This ensures that any user-defined customizations are applied without interfering with manually maintained configuration files.