Add more custom agenda commands
This commit is contained in:
parent
e77c57b998
commit
a2fb6a7609
1 changed files with 15 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
|
||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||
;; Keywords: local
|
||||
;; Version: 2020.0114.002156
|
||||
;; Version: 2020.0114.231111
|
||||
;; Package-Requires: (oni-yasnippet org-plus-contrib org-bullets hydra org-wild-notifier)
|
||||
|
||||
;; This program is free software; you can redistribute it and/or modify
|
||||
|
@ -191,7 +191,20 @@ After running it once remove it from `org-capture-after-finalize-hook'."
|
|||
(setq org-list-description-max-indent 5)
|
||||
|
||||
(setq org-agenda-custom-commands
|
||||
'(("c" "Today's (Current) tasks" tags "SCHEDULED=\"<today>\"")))
|
||||
'(("c" "Today's (Current) tasks" tags "SCHEDULED=\"<today>\"")
|
||||
("t" "Todo" tags-todo "-work-shopping")
|
||||
("w" . "Work topics")
|
||||
("wo" "Overview" ((tags-todo "+work-remy-mia")
|
||||
(tags-todo "+work+idea+mia")
|
||||
(tags-todo "+work+idea+remy")))
|
||||
("wt" "Word todo" tags-todo "+work-remy-mia")
|
||||
("wm" "Topics for Mia" tags-todo "+work+idea+mia")
|
||||
("wr" "Topics for Remy" tags-todo "+work+idea+remy")
|
||||
("s" . "Shopping")
|
||||
("so" "Overview" ((tags-todo "+shopping+home")
|
||||
(tags-todo "+shopping+candice")))
|
||||
("sh" "Shopping for home" tags-todo "+shopping+home")
|
||||
("sc" "Shopping for Candice’s" tags-todo "+shopping+candice")))
|
||||
|
||||
(setq org-agenda-files
|
||||
(mapcar #'oni-org-expand-to-home
|
||||
|
|
Loading…
Reference in a new issue