diff options
| author | BardofSprites <[email protected]> | 2025-03-25 22:11:18 -0400 |
|---|---|---|
| committer | BardofSprites <[email protected]> | 2025-03-25 22:11:18 -0400 |
| commit | 23e351d112a2e5990129acdf318c7d6767b45bf8 (patch) | |
| tree | 011199d5f32a8e399a584e0c67a45f942875f0fb /bard-emacs-modules | |
| parent | 60b98850af5d14f6fd20110340381799cd92f66c (diff) | |
new org todo keyword EXTRA
Diffstat (limited to 'bard-emacs-modules')
| -rw-r--r-- | bard-emacs-modules/bard-emacs-calendar.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bard-emacs-modules/bard-emacs-calendar.el b/bard-emacs-modules/bard-emacs-calendar.el index 7aaf8c6..ce7a556 100644 --- a/bard-emacs-modules/bard-emacs-calendar.el +++ b/bard-emacs-modules/bard-emacs-calendar.el @@ -14,9 +14,12 @@ ;; Org todo keywords - changed to using hl-todo faces fixed by modus/ef themes (setq org-todo-keywords - '((sequence "TODO(t)" "|" "DONE(d)" "KILLED(k)") + '((sequence "TODO(t)" "EXTRA(e)" "|" "DONE(d)" "KILLED(k)") (sequence "MEET(m)" "|" "MET(M)"))) +(setq org-todo-keyword-faces + '(("EXTRA" . (:inherit warning)))) + ;;; Org Agenda ;; clock tables @@ -51,7 +54,7 @@ (agenda "" ((org-agenda-span 1) (org-agenda-start-day nil) (org-deadline-warning-days 0) - (org-scheduled-past-days 0) + ;; (org-scheduled-past-days 0) (org-agenda-day-face-function (lambda (date) 'org-agenda-date)) (org-agenda-format-date "%A %-e %B %Y") (org-agenda-overriding-header "Today's agenda \n"))) |
