Hay everyone, I’m trying to get ivy-bibtex working as helm-bibtex. I’ve set it up and now I can open a pdf file from my bibtex, however, when I do edit-note, if the notes doesn’t exists the following templete get used bibtex-completion-notes-template-multiple-files.
I use doom emacs and here is my config so far for ivy-bibtex and org-roam-bibtex
(setq ivy-bibtex-default-action 'ivy-bibtex-edit-notes)
(map! :leader :desc "Search bibliography" "nb" #'ivy-bibtex)
(ivy-add-actions 'ivy-bibtex '(("o" ivy-bibtex-open-any "Open PDF, URL, or DOI")))
(setq bibtex-completion-pdf-open-function 'find-file )
(setq org-ref-completion-library 'org-ref-ivy-cite
org-ref-notes-function 'orb-edit-notes
org-ref-get-pdf-filename-function 'org-ref-get-pdf-filename )
(use-package! org-roam-bibtex
:requires bibtex-completion
:hook (org-roam-mode . org-roam-bibtex-mode)
:custom
(orb-preformat-keywords
'(("citekey" . "=key=")
"title"
"url"
"author-or-editor-abbrev"
"abstract"
"author-or-editor"
"keywords")))
Thanks!!!