mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-22 16:21:04 -05:00
emacs-straight/auctex@280cd4a0ca -> emacs-straight/auctex@764a53c8e9 emacs-straight/adaptive-wrap@a3b179ea21 -> emacs-straight/adaptive-wrap@dea4e32c18 BREAKING CHANGE: This commit also removes the +latexmk flag from the `:lang latex` module, since the auctex-latexmk package is no longer needed (support has been upstreamed into auctex). This means the module won't set `TeX-command-default` to "LaTeXMk" for you anymore; you'll have to do it yourself, e.g. (note the capitalization!) (setq TeX-command-default "laTeXMk") ;; or (setq-hook! LaTeX-mode TeX-command-default "LaTeXMk") Ref: https://git.savannah.gnu.org/cgit/auctex.git/commit/?id=4a345e2234df74f1ad98046ef1372f7ca6fb357d
24 lines
937 B
EmacsLisp
24 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 "764a53c8e93150f0edd169593a4d453810792abe")
|
|
(package! adaptive-wrap :pin "dea4e32c18d285a6ca9f72b1eadd61e27a555ed3")
|
|
(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"))
|