aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-11-01 19:03:05 -0500
committerCraig Jennings <c@cjennings.net>2025-11-01 19:03:05 -0500
commita734691b5c31135530c35423ad8ed2bbacb3b868 (patch)
tree6db4e65fc3d28e2a33161f8dc6376a0627ef4372
parentbb9894c9843caf2586b82123d9094120654f0a53 (diff)
downloaddotemacs-a734691b5c31135530c35423ad8ed2bbacb3b868.tar.gz
dotemacs-a734691b5c31135530c35423ad8ed2bbacb3b868.zip
feat: Add chime-debug nil setting to config
Explicitly set chime-debug to nil in :init section. Matches new chime.el default (changed from t to nil in recent commit). Clean production setup - debug mode available by changing to t when needed.
-rw-r--r--modules/org-agenda-config.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/org-agenda-config.el b/modules/org-agenda-config.el
index e2740cb4b..5610d840e 100644
--- a/modules/org-agenda-config.el
+++ b/modules/org-agenda-config.el
@@ -262,6 +262,9 @@ This allows a line to show in an agenda without being scheduled or a deadline."
:after alert ; Removed org-agenda - chime.el requires it internally
:ensure nil ;; using local version
:load-path "~/code/chime.el"
+ :init
+ ;; Debug mode (set to t for troubleshooting)
+ (setq chime-debug nil)
:bind
("C-c A" . chime-check)
:config