Include unlinked references in Org roam buffer

This is an experimental setting to spot missing references easily.
Performance cost might be prohibitive, though.
This commit is contained in:
Daniel - 2023-12-23 15:28:24 +01:00
parent 4dfb36858a
commit c0c5dfd080
Signed by: dbo
GPG Key ID: 784AA8DF0CCDF625
1 changed files with 4 additions and 1 deletions

View File

@ -1260,7 +1260,10 @@
org-roam-capture)
:custom ((org-roam-directory "~/Documents/zettelkasten/")
(org-roam-db-location "~/Documents/zettelkasten/org-roam.db")
(org-roam-completion-everywhere t))
(org-roam-completion-everywhere t)
(org-roam-mode-sections (list #'org-roam-backlinks-section
#'org-roam-reflinks-section
#'org-roam-unlinked-references-section)))
:bind (:map org-roam-mode-map
(("C-c n l" . org-roam-buffer-toggle)
("C-c n g" . org-roam-graph)))