diff options
| author | Craig Jennings <c@cjennings.net> | 2025-12-02 07:55:21 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-12-02 07:55:21 -0600 |
| commit | 97dea528c2b49642fe513807b86f9d378676a9e6 (patch) | |
| tree | a279e736b47f03d46768200384f2463b687532bb /modules/org-agenda-config.el | |
| parent | 8a5f7f44a239a4853f334659550dc1ed96faa93b (diff) | |
| download | dotemacs-97dea528c2b49642fe513807b86f9d378676a9e6.tar.gz dotemacs-97dea528c2b49642fe513807b86f9d378676a9e6.zip | |
feat(calendar-sync): multi-calendar support with property tests
Added multi-URL calendar sync supporting Google and Proton calendars.
Each calendar syncs to separate file with per-calendar state tracking.
Added 13 property-based tests for RRULE expansion. Total: 150 tests passing.
Diffstat (limited to 'modules/org-agenda-config.el')
| -rw-r--r-- | modules/org-agenda-config.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/org-agenda-config.el b/modules/org-agenda-config.el index de8a89c8..4be4db9e 100644 --- a/modules/org-agenda-config.el +++ b/modules/org-agenda-config.el @@ -142,7 +142,7 @@ improves performance from several seconds to instant." (setq cj/org-agenda-files-building t) (let ((start-time (current-time))) ;; Reset org-agenda-files to base files - (setq org-agenda-files (list inbox-file schedule-file gcal-file)) + (setq org-agenda-files (list inbox-file schedule-file gcal-file pcal-file)) ;; Check all projects for scheduled tasks (cj/add-files-to-org-agenda-files-list projects-dir) @@ -335,7 +335,7 @@ This allows a line to show in an agenda without being scheduled or a deadline." :init ;; Initialize org-agenda-files with base files before chime loads ;; The full list will be built asynchronously later - (setq org-agenda-files (list inbox-file schedule-file gcal-file)) + (setq org-agenda-files (list inbox-file schedule-file gcal-file pcal-file)) ;; Debug mode (keep set to nil, but available for troubleshooting) (setq chime-debug nil) |
