aboutsummaryrefslogtreecommitdiff
path: root/shoshimacs.org
diff options
context:
space:
mode:
authorGrant Shoshin Shangreaux <shoshin@cicadas.surf>2022-08-16 19:35:45 -0500
committerGrant Shoshin Shangreaux <shoshin@cicadas.surf>2022-08-16 19:35:45 -0500
commit135ea6b726ecb5a5fb5fac833194a535d0230007 (patch)
tree4d0fdd84342499732601837ab419877597d3588d /shoshimacs.org
parent740eb2aa02fffeff3322a148a037690f29a01e5d (diff)
Fix: theme loading before installation
Diffstat (limited to 'shoshimacs.org')
-rw-r--r--shoshimacs.org6
1 files changed, 1 insertions, 5 deletions
diff --git a/shoshimacs.org b/shoshimacs.org
index b1b0bee..ee08916 100644
--- a/shoshimacs.org
+++ b/shoshimacs.org
@@ -793,7 +793,7 @@ not there. then i can ~mapc~ #'package-install over the list of themes.
#+end_src
#+begin_src emacs-lisp
- (load-theme (seq-random-elt my-chosen-themes))
+ (mapc #'package-install my-themes-to-install)
#+end_src
*** chosen theme list and random loading on init
@@ -810,10 +810,6 @@ candidates to ~consult-themes~.
"List of themes I prefer for narrowing and random selection.")
#+end_src
-#+begin_src emacs-lisp
- (mapc #'package-install my-themes-to-install)
-#+end_src
-
** windresize
#+begin_src emacs-lisp