fix(emacs): change org-caldav keybinding to avoid conflict
Some checks failed
CI / check (push) Has been cancelled

Changed from SPC o C to SPC o a s (open -> agenda/calendar -> sync)
to avoid conflict with Claude Code IDE (SPC o c)
This commit is contained in:
hermione
2026-01-24 17:34:07 -08:00
committed by John Ogle
parent 1ffa8524f0
commit 70d364544f

View File

@@ -97,7 +97,9 @@
:commands (org-caldav-sync)
:init
(map! :leader
:desc "Sync calendar" "o C" #'my/org-caldav-sync-with-rbw)
(:prefix ("o" . "open")
(:prefix ("a" . "agenda/calendar")
:desc "Sync CalDAV" "s" #'my/org-caldav-sync-with-rbw)))
:config
;; Nextcloud CalDAV base URL
(setq org-caldav-url "https://nextcloud.johnogle.info/remote.php/dav/calendars/johno")