2017-02-19 18:57:16 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; lang/latex/packages.el
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
(package! auctex)
|
2018-01-01 20:48:23 +01:00
|
|
|
(package! adaptive-wrap)
|
2018-08-02 16:15:10 +02:00
|
|
|
(package! latex-preview-pane)
|
2018-01-01 20:48:23 +01:00
|
|
|
|
|
|
|
;; Optional module features:
|
|
|
|
|
|
|
|
(when (featurep! +latexmk)
|
|
|
|
(package! auctex-latexmk))
|
|
|
|
|
|
|
|
;; Features according to other user selected options
|
2017-02-19 18:57:16 -05:00
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
(when (featurep! :completion company)
|
2018-07-13 10:14:10 +02:00
|
|
|
(package! company-auctex)
|
2018-07-13 18:01:22 +02:00
|
|
|
(package! company-reftex)
|
|
|
|
(package! company-math))
|
2017-02-23 00:06:12 -05:00
|
|
|
(when (featurep! :completion ivy)
|
|
|
|
(package! ivy-bibtex))
|
|
|
|
(when (featurep! :completion helm)
|
|
|
|
(package! helm-bibtex))
|
2018-01-01 20:48:23 +01:00
|
|
|
|