summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/calendar-sync.el2
-rw-r--r--modules/org-agenda-config.el6
-rw-r--r--modules/prog-lisp.el2
3 files changed, 5 insertions, 5 deletions
diff --git a/modules/calendar-sync.el b/modules/calendar-sync.el
index fb1c0f22..106c87f7 100644
--- a/modules/calendar-sync.el
+++ b/modules/calendar-sync.el
@@ -16,7 +16,7 @@
;; - Timer-based automatic sync (every 60 minutes, configurable)
;; - Self-contained in .emacs.d (no cron, portable across machines)
;; - Read-only (can't corrupt source calendars)
-;; - Works with chime.el for event notifications
+;; - Works with Chime for event notifications
;;
;; Recurring Events (RRULE):
;;
diff --git a/modules/org-agenda-config.el b/modules/org-agenda-config.el
index 9d382750..36a3c139 100644
--- a/modules/org-agenda-config.el
+++ b/modules/org-agenda-config.el
@@ -331,10 +331,10 @@ This allows a line to show in an agenda without being scheduled or a deadline."
;; Install CHIME from GitHub using use-package :vc (Emacs 29+)
(use-package chime
:demand t
- ;; :vc (:url "https://github.com/cjennings/chime.el" :rev :newest) ;; using latest on github
- :after alert ; Removed org-agenda - chime.el requires it internally
+ ;; :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.el"
+ :load-path "~/code/chime"
:init
;; Initialize org-agenda-files with base files before chime loads
;; The full list will be built asynchronously later
diff --git a/modules/prog-lisp.el b/modules/prog-lisp.el
index cfa015ae..f82af40c 100644
--- a/modules/prog-lisp.el
+++ b/modules/prog-lisp.el
@@ -98,7 +98,7 @@
;; --------------------------------- Elisp Lint --------------------------------
;; Comprehensive linting for Emacs Lisp code (indentation, whitespace, etc.)
-;; Used by chime.el 'make lint' target for code quality checks
+;; Used by Chime 'make lint' target for code quality checks
(use-package elisp-lint
:ensure t