emacs-straight/adaptive-wrap@dea4e32c18 -> emacs-straight/adaptive-wrap@f5bc153273 emacs-straight/auctex@764a53c8e9 -> emacs-straight/auctex@451b0f08b0 - Thankfully, emacs-straight/auctex@451b0f08b0 removed the make step for building tex-site.el, but it also meant that anyone who has unpinned auctex would get file-missing errors for tex-site.el.in. Fix: #7925 Ref: emacs-straight/auctex@451b0f08b0
23 lines
937 B
EmacsLisp
23 lines
937 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/latex/packages.el
|
|
|
|
(package! auctex
|
|
:recipe (:files ("*.el" "*.info" "dir"
|
|
"doc" "etc" "images" "latex" "style"))
|
|
:pin "451b0f08b04d66ff4ffd2a5fac4ee646730c0720")
|
|
(package! adaptive-wrap :pin "f5bc153273f4c3cd03966dbf568dd921b01323ec")
|
|
(package! latex-preview-pane :pin "5297668a89996b50b2b62f99cba01cc544dbed2e")
|
|
(when (modulep! :editor evil +everywhere)
|
|
(package! evil-tex :pin "2a3177c818f106e6c11032ac261f8691f5e11f74"))
|
|
|
|
;; Optional module features.
|
|
|
|
(when (modulep! +cdlatex)
|
|
(package! cdlatex :pin "33770dec73138909714711b05a63e79da5a19ccd"))
|
|
|
|
;; Features according to other user selected options.
|
|
|
|
(when (modulep! :completion company)
|
|
(package! company-auctex :pin "9400a2ec7459dde8cbf1a5d50dfee4e300ed7e18")
|
|
(package! company-reftex :pin "42eb98c6504e65989635d95ab81b65b9d5798e76")
|
|
(package! company-math :pin "3eb006874e309ff4076d947fcbd61bb6806aa508"))
|