doomemacs/modules/tools/biblio/config.el

15 lines
475 B
EmacsLisp
Raw Normal View History

2020-04-09 16:47:48 -04:00
;;; 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
2020-04-09 16:47:48 -04:00
(use-package! ivy-bibtex
:when (featurep! :completion ivy)
:defer t
:config
(add-to-list 'ivy-re-builders-alist '(ivy-bibtex . ivy--regex-plus)))