summaryrefslogtreecommitdiff
path: root/lisp/org-custom.el
diff options
context:
space:
mode:
authorMatthew Kosarek <matthew.kosarek@vention.cc>2023-03-26 08:26:45 -0400
committerMatthew Kosarek <matthew.kosarek@vention.cc>2023-03-26 08:26:45 -0400
commit8a9b9d83d17ccd59bbefe2da3cd2e79c0d363025 (patch)
tree4b24cf552a27808ee51786062563188b76ebd9cd /lisp/org-custom.el
parent371b1723f317f56dcc010f47e5f456315fbd236f (diff)
Improvements to org-mode and performance
Diffstat (limited to 'lisp/org-custom.el')
-rw-r--r--lisp/org-custom.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/org-custom.el b/lisp/org-custom.el
index 9b60cf6..ea826bd 100644
--- a/lisp/org-custom.el
+++ b/lisp/org-custom.el
@@ -59,9 +59,12 @@
(flyspell-mode 1)
)
-(custom-set-variables
- '(org-directory "~/OrgRoam")
- '(org-agenda-files (list org-directory)))
+(setq org-directory "~/OrgRoam")
+
+(setq org-agenda-files '("~/OrgRoam" "~/OrgRoam/daily"))
+
+;(setq org-agenda-files
+; (find-lisp-find-files "~/OrgRoam" "\.org$"))
(setq org-todo-keywords
'((sequence "TODO" "PROGRESS" "VERIFY" "|" "DONE" "ABANDONED")))