Variable: org-roam-file-exclude-regexp
org-roam-file-exclude-regexp is a customizable variable defined in
org-roam.el.
Value
("data/")
Documentation
Files matching this regexp or list of regexps are excluded from Org-roam.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam.el
(defcustom org-roam-file-exclude-regexp (list org-attach-id-dir)
"Files matching this regexp or list of regexps are excluded from Org-roam."
:type '(choice
(repeat
(string :tag "Regular expression matching files to ignore"))
(string :tag "Regular expression matching files to ignore")
(const :tag "Include everything" nil))
:group 'org-roam)