jwiegley / use-package

A use-package declaration for simplifying your .emacs
https://jwiegley.github.io/use-package
GNU General Public License v3.0
4.4k stars 260 forks source link

Change repository to use a fork #999

Closed tobiasBora closed 1 year ago

tobiasBora commented 2 years ago

Because of this issue I need to change the location of the sources of the auctex-latexmk package to use a fork. Unfortunately I can't find any way to specify the address of a fork in use-package. Do you know how I could work it out? It would be great to have something like:

(use-package auctex-latexmk
  :ensure t
  :location (recipe :fetcher github :repo "smile13241324/auctex-latexmk")
  :config
  (auctex-latexmk-setup)
  (setq auctex-latexmk-inherit-TeX-PDF-mode t))

as spacemacs.

parona-source commented 1 year ago

Using straight.el with use-package would have that functionality

https://github.com/radian-software/straight.el#integration-with-use-package

tobiasBora commented 1 year ago

Nice, thanks!