Emacs 27.1
Org 9.4.6
Roam 2.0.0
I have a fresh install of emacs, with the following in my .emacs
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.org/packages/") t)
(add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t)
(setq org-roam-directory (file-truename "~/org-roam"))
(setq org-roam-v2-ack t)
(require 'org-roam)
(org-roam-setup)
I have run M-x package-refresh-contents, then M-x package-install RET org-roam RET.
org-roam–sqlite-available-p is set to t.
In ~/org-roam I have two files:
notes.org
with
* first item
[[id:06f4f8e6-fcb6-461a-bd0b-753013a71c56][first-node]]
I created this link with org-roam-node-insert
20210804173008-first_node.org
with
:PROPERTIES:
:ID: 06f4f8e6-fcb6-461a-bd0b-753013a71c56
:END:
#+title: first-node
I created this file with org-roam-node-find. Running org-open-at-point on the link in notes.org
takes me to 20210804173008-first_node.org
. I have finalised the capture and saved both files.
When I open the first-node file and run org-roam-buffer-toggle, the roam buffer appears, but it does not display the backlink.
I have tried everything I can think of to get this to work. Any suggestions?