summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-11-09 15:34:51 -0600
committerCraig Jennings <c@cjennings.net>2025-11-09 15:34:51 -0600
commitc64357f7fa0751beaa30565babec62df5232766a (patch)
tree3a7e455ab9db44ebc742a6429709fc95faab7621 /modules
parent7445bf155a2edfd520a47007abec30193ba4961f (diff)
feat:chime: Add calendar URL configuration
Set the calendar URL in chime configuration for better integration with Google Calendar. Debug mode remains available but disabled by default.
Diffstat (limited to 'modules')
-rw-r--r--modules/org-agenda-config.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/org-agenda-config.el b/modules/org-agenda-config.el
index 70ca9d4a..37f9e7e9 100644
--- a/modules/org-agenda-config.el
+++ b/modules/org-agenda-config.el
@@ -264,7 +264,7 @@ This allows a line to show in an agenda without being scheduled or a deadline."
:load-path "~/code/chime.el"
:init
;; Debug mode (keep set to nil, but available for troubleshooting)
- ;; (setq chime-debug nil)
+ (setq chime-debug nil)
:bind
("C-c A" . chime-check)
:config
@@ -299,6 +299,9 @@ This allows a line to show in an agenda without being scheduled or a deadline."
;; Notification title
(setq chime-notification-title "Reminder")
+ ;; Calendar URL
+ (setq chime-calendar-url "https://calendar.google.com/calendar/u/0/r")
+
;; Enable chime-mode
(chime-mode 1))