bdarcus/bibtex-actions@08c6ca0e5b -> bdarcus/citar@fd33f5c4f7 bibtex-actions is now called citar, and the package comes with configuration for embark. Fix: #5723 Close: #5747 Co-authored-by: MPNV38 <MPNV38@zebra.com>
20 lines
565 B
EmacsLisp
20 lines
565 B
EmacsLisp
;;; tools/biblio/config.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package! bibtex-completion
|
|
:defer t
|
|
:config
|
|
(setq bibtex-completion-additional-search-fields '(keywords)
|
|
bibtex-completion-pdf-field "file"));; This tell bibtex-completion to look at the File field of the bibtex to figure out which pdf to open
|
|
|
|
|
|
(use-package! ivy-bibtex
|
|
:when (featurep! :completion ivy)
|
|
:defer t
|
|
:config
|
|
(add-to-list 'ivy-re-builders-alist '(ivy-bibtex . ivy--regex-plus)))
|
|
|
|
|
|
(use-package! citar
|
|
:when (featurep! :completion vertico)
|
|
:after embark
|
|
:defer t)
|