You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 23, 2025. It is now read-only.
Hi
I'm converting my init.el to use use-package. It's great :-).
I'm trying to install auctex via use-package (I use Ubuntu and I have removed the auctex ubuntu package).
I can get auctex to work with the following snippet:
(use-package tex-site
:ensure auctex
:defer t
:mode (".tex'" . latex-mode)
:commands (latex-mode LaTeX-mode plain-tex-mode)
:config
(progn
(add-to-list 'load-path "~/.emacs.d/elpa/auctex-11.89.5")
(load "auctex.el" nil t t)
(load "preview.el" nil t t)
)
)
But is there a smarter way? Any help appreciated. Thanks in advance.