diff options
| author | Craig Jennings <c@cjennings.net> | 2026-02-04 05:41:08 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-02-04 05:41:08 -0600 |
| commit | d841867fc6b460cbd7ad420486557738479cec74 (patch) | |
| tree | b0491253876d212335a3c47ad2350e8d83c4cf09 /modules | |
| parent | 5ab633fa720b155809d04ff78ce313e2084f419d (diff) | |
| download | dotemacs-d841867fc6b460cbd7ad420486557738479cec74.tar.gz dotemacs-d841867fc6b460cbd7ad420486557738479cec74.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.el | 12 |
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).") |
