summaryrefslogtreecommitdiff
path: root/modules/org-agenda-config.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-04-30 10:10:52 -0500
committerCraig Jennings <c@cjennings.net>2026-04-30 10:10:52 -0500
commit19dd1dbe921a42a279ad0331f43ac4afbdb66d1c (patch)
tree52f23209d424eb30ccf6e5a257f7adaa2347e481 /modules/org-agenda-config.el
parenta5e51b69feb2fb3d905a1168b3718f35cd062190 (diff)
downloaddotemacs-19dd1dbe921a42a279ad0331f43ac4afbdb66d1c.tar.gz
dotemacs-19dd1dbe921a42a279ad0331f43ac4afbdb66d1c.zip
chore(deps): move remaining packages from :load-path to :vc; drop archived org-gcal
The three packages that still loaded from local checkouts now install via :vc: - chime → git@cjennings.net:chime.git (was :load-path "~/code/chime") - wttrin → git@cjennings.net:emacs-wttrin.git (was :load-path "/home/cjennings/code/emacs-wttrin") - org-msg → https://github.com/jeremy-compostella/org-msg (was :load-path "/home/cjennings/code/org-msg"; switching to upstream rather than a fork since the previous fork wasn't carrying any active changes) For the two cjennings.net repos this matches the org-drill (2842c04) and gloss (a5e51b6) shape: primary on cjennings.net, post-receive hook mirroring to GitHub. The previously-commented :vc URLs in chime and wttrin pointed at GitHub directly, which would have lost the cjennings-first convention if uncommented later. Also drops :ensure nil on chime (only relevant under package.el, not :vc) and removes modules/archived/org-gcal-config.el. Nothing in init.el or any module references org-gcal, so the file is genuinely unused.
Diffstat (limited to 'modules/org-agenda-config.el')
-rw-r--r--modules/org-agenda-config.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/org-agenda-config.el b/modules/org-agenda-config.el
index f68bb4ca..51a48936 100644
--- a/modules/org-agenda-config.el
+++ b/modules/org-agenda-config.el
@@ -357,13 +357,12 @@ This allows a line to show in an agenda without being scheduled or a deadline."
(setq alert-fade-time 10) ;; seconds to vanish alert
(setq alert-default-style 'libnotify)) ;; works well with dunst
-;; Install CHIME from GitHub using use-package :vc (Emacs 29+)
(use-package chime
+ :vc (:url "git@cjennings.net:chime.git"
+ :branch "main"
+ :rev :newest)
:demand t
- ;; :vc (:url "https://github.com/cjennings/chime" :rev :newest) ;; using latest on github
:after alert ; Removed org-agenda - Chime requires it internally
- :ensure nil ;; using local version
- :load-path "~/code/chime"
:init
;; Initialize org-agenda-files with base files before chime loads
;; The full list will be built asynchronously later