diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-04-09 14:35:02 +0630 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-04-09 14:35:02 +0630 |
commit | 31155589e59d1cb9e6f389c96e34fbc14e3fa34b (patch) | |
tree | 41e184209c21e6d494c03672a431f4f8768423cb /Emacs/.config/emacs/init.el | |
parent | ac3a305826507d76f81ba0ac43e7c9c6301adc9a (diff) | |
download | dotfiles-31155589e59d1cb9e6f389c96e34fbc14e3fa34b.tar.gz dotfiles-31155589e59d1cb9e6f389c96e34fbc14e3fa34b.tar.bz2 dotfiles-31155589e59d1cb9e6f389c96e34fbc14e3fa34b.zip |
(Emacs/init)~updated straight.el in bootstrap
The URL for bootstrap.el has changed as a result of straight now being
under a group rather than a user. Just means I need to change it
here. While doing so, I update the bootstrap version as well.
Diffstat (limited to 'Emacs/.config/emacs/init.el')
-rw-r--r-- | Emacs/.config/emacs/init.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Emacs/.config/emacs/init.el b/Emacs/.config/emacs/init.el index e182c69..4258d37 100644 --- a/Emacs/.config/emacs/init.el +++ b/Emacs/.config/emacs/init.el @@ -30,12 +30,15 @@ ;; Straight (defvar bootstrap-version) (let ((bootstrap-file - (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory)) - (bootstrap-version 5)) + (expand-file-name + "straight/repos/straight.el/bootstrap.el" + (or (bound-and-true-p straight-base-dir) + user-emacs-directory))) + (bootstrap-version 7)) (unless (file-exists-p bootstrap-file) (with-current-buffer (url-retrieve-synchronously - "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el" + "https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el" 'silent 'inhibit-cookies) (goto-char (point-max)) (eval-print-last-sexp))) |