diff options
| author | Craig Jennings <c@cjennings.net> | 2025-11-01 19:03:05 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-11-01 19:03:05 -0500 |
| commit | b4fe852a208ac7c7880a585a483f66aab9f089ee (patch) | |
| tree | 53f26ca849742a326ede546ace2e500bc5761562 /modules | |
| parent | 8be2753f052fa8e3e66dd9d82c69b569147b568f (diff) | |
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.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/org-agenda-config.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/org-agenda-config.el b/modules/org-agenda-config.el index e2740cb4..5610d840 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 |
