bump: :tools biblio

andras-simonyi/citeproc-el@9f783967c1 -> andras-simonyi/citeproc-el@406bd9964f
emacs-citar/citar@b24b5b94b7 -> emacs-citar/citar@146f2cb5a3
tmalsburg/helm-bibtex@aa775340ba -> tmalsburg/helm-bibtex@ce8c17690d

Also add citar-embark, which now contains the embark functionality in a
separate minor mode package, and explicitly add parsebib, so we can pin
the precise version.
This commit is contained in:
Bruce D'Arcus 2022-08-02 20:06:17 -04:00 committed by Henrik Lissner
parent 13b3304c08
commit b06fd63dcb
3 changed files with 11 additions and 2 deletions

View file

@ -20,7 +20,9 @@ selected so it should be possible to use without modifications.
** Packages ** Packages
- [[doom-package:][bibtex-completion]] if [[doom-module:][:completion ivy]] or [[doom-module:][:completion helm]] - [[doom-package:][bibtex-completion]] if [[doom-module:][:completion ivy]] or [[doom-module:][:completion helm]]
- [[doom-package:][parsebib]] if [[doom-module:][:completion ivy]] or [[doom-module:][:completion helm]] or [[doom-module:][:completion vertico]]
- [[doom-package:][citar]] if [[doom-module:][:completion vertico]] - [[doom-package:][citar]] if [[doom-module:][:completion vertico]]
- [[doom-package:][citar-embark]] if [[doom-module:][:completion vertico]]
- [[doom-package:][helm-bibtex]] if [[doom-module:][:completion helm]] - [[doom-package:][helm-bibtex]] if [[doom-module:][:completion helm]]
- [[doom-package:][ivy-bibtex]] if [[doom-module:][:completion ivy]] - [[doom-package:][ivy-bibtex]] if [[doom-module:][:completion ivy]]

View file

@ -24,6 +24,11 @@
org-cite-follow-processor 'citar org-cite-follow-processor 'citar
org-cite-activate-processor 'citar)) org-cite-activate-processor 'citar))
(use-package! citar-embark
:when (featurep! :completion vertico)
:after citar embark
:config (citar-embark-mode))
;; `org-cite' processors ;; `org-cite' processors
(use-package! oc-biblatex :after oc) (use-package! oc-biblatex :after oc)
(use-package! oc-csl :after oc) (use-package! oc-csl :after oc)

View file

@ -8,6 +8,8 @@
(package! bibtex-completion :pin "ce8c17690ddad73d01531084b282f221f8eb6669") (package! bibtex-completion :pin "ce8c17690ddad73d01531084b282f221f8eb6669")
(package! helm-bibtex :pin "ce8c17690ddad73d01531084b282f221f8eb6669")) (package! helm-bibtex :pin "ce8c17690ddad73d01531084b282f221f8eb6669"))
(when (featurep! :completion vertico) (when (featurep! :completion vertico)
(package! citar :pin "dd028c6a4d2fb1c7b89082dffa15be01637765c5")) (package! citar :pin "146f2cb5a31d4968ec17f39f189e4ea131ccaf56")
(package! citar-embark :pin "146f2cb5a31d4968ec17f39f189e4ea131ccaf56"))
(package! citeproc :pin "ba49516265fa24b138346c4918d39d19b4de8a62") (package! parsebib :pin "175a1bdac1eabc7415116c8722795a1155e2d2c9")
(package! citeproc :pin "406bd9964f1ce531fc45beddcf9ccc44d3456129")