;; TEXT: Add the following lines to your config.el file to include your org-roam directory in org-agenda-files. Replace "/path/to/your/org-roam/directory" with the actual path to your org-roam directory.
;; config.el - Revision: Include org-roam directory in org-agenda-files
;; Ensure org-agenda-files includes org-roam directory
(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$"))))
;; TEXT: This snippet uses the directory-files-recursively function to recursively search your org-roam directory for .org files and adds them to org-agenda-files.
Editor is loading...