aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-14 15:30:35 -0600
committerCraig Jennings <c@cjennings.net>2026-01-14 15:30:35 -0600
commitd5a9bafc47880e78b992b5e8ae3f80598fcf8846 (patch)
tree56581ee93e0387925c32845e3edfc5d28f44c862 /modules
parent29088b79c28418af2fc498b35e8eb710dace8d4f (diff)
downloaddotemacs-d5a9bafc47880e78b992b5e8ae3f80598fcf8846.tar.gz
dotemacs-d5a9bafc47880e78b992b5e8ae3f80598fcf8846.zip
fix(calendar-sync): disable auto-start to prevent freeze
Proton calendar download causes Emacs to freeze. Disabled auto-sync by default until root cause is investigated. Manual sync still available via C-; g s keybinding.
Diffstat (limited to 'modules')
-rw-r--r--modules/calendar-sync.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/calendar-sync.el b/modules/calendar-sync.el
index 4237ef7c..449a9fa6 100644
--- a/modules/calendar-sync.el
+++ b/modules/calendar-sync.el
@@ -94,7 +94,7 @@ Example:
"Sync interval in minutes.
Default: 60 minutes (1 hour).")
-(defvar calendar-sync-auto-start t
+(defvar calendar-sync-auto-start nil
"Whether to automatically start calendar sync when module loads.
If non-nil, sync starts automatically when calendar-sync is loaded.
If nil, user must manually call `calendar-sync-start'.")