From aed94b16cd3c16bdb05d7eb94fb4ffe01f44c6c8 Mon Sep 17 00:00:00 2001 From: lemurianmage Date: Fri, 30 Jan 2026 15:08:21 +0100 Subject: various little changes --- straight-bootstrap.el | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 straight-bootstrap.el (limited to 'straight-bootstrap.el') diff --git a/straight-bootstrap.el b/straight-bootstrap.el new file mode 100644 index 0000000..11ccfa1 --- /dev/null +++ b/straight-bootstrap.el @@ -0,0 +1,15 @@ +(defvar bootstrap-version) +(let ((bootstrap-file + (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/radian-software/straight.el/develop/install.el" + 'silent 'inhibit-cookies) + (goto-char (point-max)) + (eval-print-last-sexp))) + (load bootstrap-file nil 'nomessage)) -- cgit v1.2.3