This commit is contained in:
Michael Thomson 2025-04-21 22:12:12 -04:00
parent 9317418e88
commit 2d472f6acc
Signed by: mthomson
GPG Key ID: B6CA05EE5F436C79

View File

@ -310,13 +310,24 @@
(org-capture-templates (org-capture-templates
`(("i" "Inbox" entry (file "inbox.org") `(("i" "Inbox" entry (file "inbox.org")
,(concat "* TODO %?\n" ,(concat "* TODO %?\n"
"/Entered on/ %U")) "Entered on %U"))
("m" "Meeting" entry (file+headline "agenda.org" "Future")
,(concat "* %? :meeting:\n"
"<%<%Y-%m-%d %a %H:00>>"))
("n" "Note" entry (file "notes.org")
,(concat "* Note (%a)\n"
"Entered on %U\n" "\n" "%?"))
("@" "Inbox [mu4e]" entry (file "inbox.org") ("@" "Inbox [mu4e]" entry (file "inbox.org")
,(concat "* TODO Process \"%a\" %?\n" ,(concat "* TODO Process \"%a\" %?\n"
"/Entered on/ %U")))) "Entered on %U"))))
;; agenda config ;; agenda config
(org-agenda-files (list "everything.org" "inbox.org" "agenda.org" "notes.org")) (org-agenda-files (list "everything.org" "inbox.org" "agenda.org" "notes.org"))
;; Refile
(setq org-refile-use-outline-path 'file)
(setq org-outline-path-complete-in-steps nil)
(setq org-refile-targets (quote ((nil :maxlevel . 9)
(org-agenda-files :maxlevel . 9))))
:config :config
(add-to-list 'org-modules 'org-habit t) (add-to-list 'org-modules 'org-habit t)
:hook :hook