diff --git a/emacs/.config/emacs/Emacs.org b/emacs/.config/emacs/Emacs.org index d434faa..f4c66f7 100644 --- a/emacs/.config/emacs/Emacs.org +++ b/emacs/.config/emacs/Emacs.org @@ -34,12 +34,15 @@ #+begin_src emacs-lisp (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))) @@ -139,9 +142,9 @@ ** Theme *** Catppuccin #+begin_src emacs-lisp - (use-package catppuccin-theme - :config) -; (load-theme 'catppuccin :no-confirm)) + (use-package catppuccin-theme + :config + (load-theme 'catppuccin :no-confirm)) #+end_src *** Modus Themes #+begin_src emacs-lisp @@ -154,8 +157,7 @@ modus-themes-prompts '(bold intense) modus-themes-mode-line '(borderless accented moody) modus-themes-org-blocks 'gray-background - modus-themes-region '(bg-only no-extend)) - (load-theme 'modus-operandi :no-confirm)) + modus-themes-region '(bg-only no-extend))) #+end_src * Completion ** Vertico @@ -282,8 +284,8 @@ * Languages ** Agda #+begin_src emacs-lisp - (load-file (let ((coding-system-for-read 'utf-8)) - (shell-command-to-string "agda-mode locate"))) +; (load-file (let ((coding-system-for-read 'utf-8)) +; (shell-command-to-string "agda-mode locate"))) #+end_src ** PG #+begin_src emacs-lisp