1
0
Fork 0

[oni-org] Add any org files to the agenda list

This commit is contained in:
Tom Willemse 2021-08-12 22:02:27 -07:00
parent ddd2d044ac
commit af880424a4
Signed by: ryuslash
GPG key ID: 7D5C407B435025C1

View file

@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
;; Version: 2021.0803.090051
;; Version: 2021.0812.213913
;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org org-contrib org-bullets org-edna diminish all-the-icons olivetti)
;; This program is free software; you can redistribute it and/or modify
@ -528,8 +528,11 @@ also move point to the start of the heading."
(setq org-agenda-files
(cons org-default-notes-file
(when (file-exists-p "~/documents/org/projects/")
(directory-files "~/documents/org/projects/" t "\\.org\\'"))))
(mapcar (lambda (file) (expand-file-name file oni-org-exocortex-directory))
(split-string
(let ((default-directory oni-org-exocortex-directory))
(shell-command-to-string "egrep -l \"^\\\\*+ (TODO|WIP|BLOCKED|DONE|READ|READING|FINISHED|STOPPED|WATCH|WATCHING|WATCHED|LISTEN|LISTENING|CANCELLED)\" *.org"))
"\n" t))))
(setq org-agenda-tags-todo-honor-ignore-options t)
(setq org-agenda-todo-ignore-scheduled 'future)
(setq org-agenda-restore-windows-after-quit t)