updated straight.el bootstrap

This commit is contained in:
William Ball 2025-05-12 09:26:49 -07:00
parent 9391bc8ba4
commit 0bff7e61ee
Signed by: wball
GPG key ID: B8682D8137B70765

View file

@ -34,12 +34,15 @@
#+begin_src emacs-lisp #+begin_src emacs-lisp
(defvar bootstrap-version) (defvar bootstrap-version)
(let ((bootstrap-file (let ((bootstrap-file
(expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory)) (expand-file-name
(bootstrap-version 5)) "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) (unless (file-exists-p bootstrap-file)
(with-current-buffer (with-current-buffer
(url-retrieve-synchronously (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) 'silent 'inhibit-cookies)
(goto-char (point-max)) (goto-char (point-max))
(eval-print-last-sexp))) (eval-print-last-sexp)))
@ -139,9 +142,9 @@
** Theme ** Theme
*** Catppuccin *** Catppuccin
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package catppuccin-theme (use-package catppuccin-theme
:config) :config
; (load-theme 'catppuccin :no-confirm)) (load-theme 'catppuccin :no-confirm))
#+end_src #+end_src
*** Modus Themes *** Modus Themes
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -154,8 +157,7 @@
modus-themes-prompts '(bold intense) modus-themes-prompts '(bold intense)
modus-themes-mode-line '(borderless accented moody) modus-themes-mode-line '(borderless accented moody)
modus-themes-org-blocks 'gray-background modus-themes-org-blocks 'gray-background
modus-themes-region '(bg-only no-extend)) modus-themes-region '(bg-only no-extend)))
(load-theme 'modus-operandi :no-confirm))
#+end_src #+end_src
* Completion * Completion
** Vertico ** Vertico
@ -282,8 +284,8 @@
* Languages * Languages
** Agda ** Agda
#+begin_src emacs-lisp #+begin_src emacs-lisp
(load-file (let ((coding-system-for-read 'utf-8)) ; (load-file (let ((coding-system-for-read 'utf-8))
(shell-command-to-string "agda-mode locate"))) ; (shell-command-to-string "agda-mode locate")))
#+end_src #+end_src
** PG ** PG
#+begin_src emacs-lisp #+begin_src emacs-lisp