aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-02-04 05:41:08 -0600
committerCraig Jennings <c@cjennings.net>2026-02-04 05:41:08 -0600
commit27ac07e34aa02194a7f844465c4672a4397d4d3b (patch)
treefe6bf1627653d028508ef15e6fac1ecee44dfb37 /modules
parent8f72ea0d77dd989d0324e59018cf92765450d8d5 (diff)
downloaddotemacs-27ac07e34aa02194a7f844465c4672a4397d4d3b.tar.gz
dotemacs-27ac07e34aa02194a7f844465c4672a4397d4d3b.zip
refactor(calendar): move calendar URLs into calendar-sync.el
Consolidate calendar configuration within the module itself rather than requiring setup in init.el. Improves module encapsulation.
Diffstat (limited to 'modules')
-rw-r--r--modules/calendar-sync.el12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/calendar-sync.el b/modules/calendar-sync.el
index a121eaf8..a73c3471 100644
--- a/modules/calendar-sync.el
+++ b/modules/calendar-sync.el
@@ -90,6 +90,18 @@ Example:
:url \"***REMOVED***"
:file pcal-file)))")
+;; Calendar sync (one-way: Google/Proton → Org)
+(setq calendar-sync-calendars
+ `((:name "google"
+ :url "***REMOVED***"
+ :file ,gcal-file)
+ (:name "proton"
+ :url "***REMOVED***"
+ :file ,pcal-file)
+ (:name "deepsat"
+ :url "***REMOVED***"
+ :file ,dcal-file)))
+
(defvar calendar-sync-interval-minutes 60
"Sync interval in minutes.
Default: 60 minutes (1 hour).")