comparison of code

 avatar
unknown
lisp
a year ago
418 B
6
Indexable
;; GPT
(after! org
  ;; Append org-roam directory to org-agenda-files
  (setq org-agenda-files (append org-agenda-files
                                 ;; Recursively find .org files in org-roam directory
                                 (directory-files-recursively "/path/to/your/org-roam/directory" "\\.org$"))))


;; Agent314
(after! org
  (setq org-agenda-files
        '("~/org-roam" "~/org/" "~/org-todo" )))

Editor is loading...
Leave a Comment