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
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"))