Merge pull request #2861 from bdarcus/biblio-module

adding new biblio module
This commit is contained in:
Henrik Lissner 2020-04-15 14:28:40 -04:00 committed by GitHub
commit dad93db56e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,7 @@
;;; tools/biblio/config.el -*- lexical-binding: t; -*-
(use-package! ivy-bibtex
:when (featurep! :completion ivy)
:defer t
:config
(add-to-list 'ivy-re-builders-alist '(ivy-bibtex . ivy--regex-plus)))

View file

@ -0,0 +1,7 @@
;; -*- no-byte-compile: t; -*-
;;; tools/biblio/packages.el
(when (featurep! :completion ivy)
(package! ivy-bibtex :pin "3cff6bd702"))
(when (featurep! :completion helm)
(package! helm-bibtex :pin "3cff6bd702"))