Install & track from straight.el's develop branch

This commit is contained in:
Henrik Lissner 2019-08-21 00:09:28 -04:00
parent 18cefa0167
commit 0b2b5d1c6c
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -90,7 +90,8 @@ missing) and shouldn't be deleted.")
(if value (setq package-selected-packages value)))
;;; straight
(setq straight-cache-autoloads nil ; we already do this, and better.
(setq straight-repository-branch "develop"
straight-cache-autoloads nil ; we already do this, and better.
;; Doom doesn't encourage you to modify packages in place. Disabling this
;; makes 'doom refresh' instant (once everything set up), which is much
;; nicer UX than the several seconds modification checks.
@ -185,7 +186,8 @@ necessary package metadata is initialized and available for them."
(file-readable-p bootstrap-file))
(with-current-buffer
(url-retrieve-synchronously
"https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
(format "https://raw.githubusercontent.com/raxod502/straight.el/%s/install.el"
straight-repository-branch)
'silent 'inhibit-cookies)
(goto-char (point-max))
(eval-print-last-sexp)))