doomemacs/modules/tools/biblio/config.el
Brian McGillion 088db18c6d Add bibtex-completion
Helm-Bibtex was split to extract bibtex-completion into a standalone
MELPA package. Adding the functionality here to account for the
changes in the packaging.
2020-04-16 13:53:39 +04:00

15 lines
475 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)))