enable scheduled/deadline for appointment tracking as well as improve sheduled/deadline handling in org-mode config

This commit is contained in:
KemoNine 2022-09-16 09:20:12 -04:00
parent 07b4cf30b1
commit 79a3c5c547
2 changed files with 4 additions and 2 deletions

View File

@ -50,13 +50,15 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; org-agenda tuning (view stuff only)
(setq org-agenda-todo-ignore-scheduled 'all)
;; Remove completed deadline tasks from the agenda view
(setq org-agenda-skip-deadline-if-done t)
;; Remove completed scheduled tasks from the agenda view
(setq org-agenda-skip-scheduled-if-done t)
;; Remove completed items from search results
(setq org-agenda-skip-timestamp-if-done t)
;; Dont show deadline pre-warning if already scheduled (scheduled means the time when you /start work/ on a todo ; this is very different than norms
;; see https://orgmode.org/manual/Deadlines-and-Scheduling.html
(setq org-agenda-skip-deadline-prewarning-if-scheduled t)
;; dont tend to care about tag inheritance outside of search
(setq org-agenda-use-tag-inheritance nil)
;; add new option to update habit for yesterday and reschedule it as active today

View File

@ -55,7 +55,7 @@
)
("hmd" "Appointment noteworthy developments / [time] in review"
entry (file+headline "~/org/health/health_mike.org" "To Do")
"** WIP [#A] %^{Heading} %^g\nDEADLINE: %^t\n%?"
"** READY [#A] %^{Heading} %^g\nDEADLINE: %^t\nSCHEDULED: %T\n%?"
:immediate-finish "f"
:jump-to-captured "t"
:unnarrowed "t"