Suppress warning about v2

Hi,

I cannot seem to get the warning about v2 to go away, i.e. the (setq org-roam-v2-ack t).

My init.el employs use-package, and I’ve tried supplying the line under :config and :custom and whereever else seemed appropriate to my slightly newbish eyes, but I’m still warned on every launch.

Can anyone help out with a use-package example config that works?

You need to put it in the :init (setq org-roam-v2-ack t) section :slight_smile:

Similarly, in Spacemacs, I needed to add (setq org-roam-v2-ack t) in to the dotspacemacs/user-init function rather than dotspacemacs/user-config.

I almost slapped my forehead reading that.

However… I still can’t make it go away. I’m following the use-package documentation guidelines and have even commented out the rest of my org-roam-related config to make sure. It now looks exactly like the most basic use-package example:

(use-package foo
  :init
  (setq foo-variable t))

Like so:

(use-package org-roam
  :init
  (setq org-roam-v2-ack t))

Still get the warning.