Company-reftex should be conditional on company

This commit is contained in:
Patrick Elliott 2018-07-13 18:50:10 +02:00
parent 6ba4982bfb
commit 00322883d7

View file

@ -165,7 +165,6 @@
bibtex-text-indentation 20)
(define-key bibtex-mode-map (kbd "C-c \\") #'bibtex-fill-entry))
(def-package! auctex-latexmk
:when (featurep! +latexmk)
:after-call (latex-mode-hook LaTeX-mode-hook)
@ -178,12 +177,10 @@
;; Add latexmk as a TeX target
(auctex-latexmk-setup))
(def-package! ivy-bibtex
:when (featurep! :completion ivy)
:commands ivy-bibtex)
(def-package! helm-bibtex
:when (featurep! :completion helm)
:commands helm-bibtex)
@ -210,6 +207,7 @@
company-backends)))))
(def-package! company-reftex
:when (featurep! :completion company)
:after reftex
:config
(set-company-backend! 'reftex-mode 'company-reftex-labels 'company-reftex-citations))