mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-02 14:53:38 -05:00
From this point on, Straight will download packages from tarballs (if possible) from their associated forge rather than clone them as git repositories. This is (marginally) faster and consumes significantly less space. Doom treats its packages as build artifacts anyway. This shouldn't cause any immediate breakage, but it may upset folks who want their local package installs to be repositories. For them, this can be reversed by simply adding this to $DOOMDIR/init.el: (after! doom-straight (setq straight-vc-use-snapshot-installation nil)) This only applies to packages installed after this point. Packages that are already cloned as a repo will stay that way until the next time they're uninstalled or reinstalled from scratch. Plus it only works on systems that have `tar` in their $PATH *and* forges that are supported (at the time of writing: github, gitlab, codeberg, bitbucket, and sourcehut). Ref: radian-software/straight.el@4241b63952