Emacs: org agenda simplifications
This commit is contained in:
parent
4524062107
commit
a6db37da88
1 changed files with 5 additions and 5 deletions
|
@ -467,15 +467,15 @@
|
||||||
;; bind capture templates
|
;; bind capture templates
|
||||||
(setq org-capture-templates
|
(setq org-capture-templates
|
||||||
'(("t" "todo" entry (file+headline "~/cloud/org/todo.org" "Tasks")
|
'(("t" "todo" entry (file+headline "~/cloud/org/todo.org" "Tasks")
|
||||||
"* TODO [#A] %? %^G\n CREATED: %u")
|
"* TODO %? %^G\n CREATED: %u")
|
||||||
("s" "scheduled todo" entry (file+headline "~/cloud/org/todo.org" "Tasks")
|
("s" "scheduled todo" entry (file+headline "~/cloud/org/todo.org" "Tasks")
|
||||||
"* TODO [#A] %? %^G\n SCHEDULED: %^T\n CREATED: %u\n")
|
"* TODO %?\n SCHEDULED: %^T\n CREATED: %u\n")
|
||||||
("m" "scheduled mail" entry (file+headline "~/cloud/org/todo.org" "Tasks")
|
("m" "scheduled mail" entry (file+headline "~/cloud/org/todo.org" "Tasks")
|
||||||
"* TODO [#A] %? %^G\n SCHEDULED: %^T\n CREATED: %u\n %a\n")
|
"* TODO %?\n SCHEDULED: %^T\n CREATED: %u\n %a\n")
|
||||||
("n" "Note" entry (file+headline "~/cloud/org/notes.org" "Notes")
|
("n" "Note" entry (file+headline "~/cloud/org/notes.org" "Notes")
|
||||||
"* %? \n %i\n CREATED: %u\n %a\n")
|
"* %? \n %i\n CREATED: %u\n %a\n")
|
||||||
("p" "Project Idea" entry (file+headline "~/cloud/org/projects.org" "INBOX")
|
("p" "Project Idea" entry (file+headline "~/cloud/org/projects.org" "INBOX")
|
||||||
"* TODO %? %^G\n %i\n CREATED: %u\n")
|
"* TODO %?\n %i\n CREATED: %u\n")
|
||||||
("w" "Wiki Entry" entry (file+headline "~/cloud/org/wiki.org" "INBOX")
|
("w" "Wiki Entry" entry (file+headline "~/cloud/org/wiki.org" "INBOX")
|
||||||
"* %? \n CREATED: %u\n %i\n")))
|
"* %? \n CREATED: %u\n %i\n")))
|
||||||
|
|
||||||
|
@ -489,7 +489,7 @@
|
||||||
(setq org-deadline-warning-days 7)
|
(setq org-deadline-warning-days 7)
|
||||||
|
|
||||||
;; show tasks in the next 14 days
|
;; show tasks in the next 14 days
|
||||||
(setq org-agenda-span (quote fortnight))
|
(setq org-agenda-span (quote day))
|
||||||
|
|
||||||
;; org sorthing strategy
|
;; org sorthing strategy
|
||||||
(setq org-agenda-sorting-strategy '(time-up priority-down))
|
(setq org-agenda-sorting-strategy '(time-up priority-down))
|
||||||
|
|
Loading…
Reference in a new issue