enable scheduled/deadline for appointment tracking as well as improve sheduled/deadline handling in org-mode config
This commit is contained in:
parent
07b4cf30b1
commit
79a3c5c547
|
@ -50,13 +50,15 @@
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
; org-agenda tuning (view stuff only)
|
; org-agenda tuning (view stuff only)
|
||||||
(setq org-agenda-todo-ignore-scheduled 'all)
|
|
||||||
;; Remove completed deadline tasks from the agenda view
|
;; Remove completed deadline tasks from the agenda view
|
||||||
(setq org-agenda-skip-deadline-if-done t)
|
(setq org-agenda-skip-deadline-if-done t)
|
||||||
;; Remove completed scheduled tasks from the agenda view
|
;; Remove completed scheduled tasks from the agenda view
|
||||||
(setq org-agenda-skip-scheduled-if-done t)
|
(setq org-agenda-skip-scheduled-if-done t)
|
||||||
;; Remove completed items from search results
|
;; Remove completed items from search results
|
||||||
(setq org-agenda-skip-timestamp-if-done t)
|
(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
|
;; dont tend to care about tag inheritance outside of search
|
||||||
(setq org-agenda-use-tag-inheritance nil)
|
(setq org-agenda-use-tag-inheritance nil)
|
||||||
;; add new option to update habit for yesterday and reschedule it as active today
|
;; add new option to update habit for yesterday and reschedule it as active today
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
)
|
)
|
||||||
("hmd" "Appointment noteworthy developments / [time] in review"
|
("hmd" "Appointment noteworthy developments / [time] in review"
|
||||||
entry (file+headline "~/org/health/health_mike.org" "To Do")
|
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"
|
:immediate-finish "f"
|
||||||
:jump-to-captured "t"
|
:jump-to-captured "t"
|
||||||
:unnarrowed "t"
|
:unnarrowed "t"
|
||||||
|
|
Reference in a new issue