diff options
author | Grant Shoshin Shangreaux <shoshin@cicadas.surf> | 2022-08-16 19:35:45 -0500 |
---|---|---|
committer | Grant Shoshin Shangreaux <shoshin@cicadas.surf> | 2022-08-16 19:35:45 -0500 |
commit | 135ea6b726ecb5a5fb5fac833194a535d0230007 (patch) | |
tree | 4d0fdd84342499732601837ab419877597d3588d | |
parent | 740eb2aa02fffeff3322a148a037690f29a01e5d (diff) |
Fix: theme loading before installation
-rw-r--r-- | shoshimacs.el | 4 | ||||
-rw-r--r-- | shoshimacs.org | 6 |
2 files changed, 2 insertions, 8 deletions
diff --git a/shoshimacs.el b/shoshimacs.el index ffd98c1..52ea911 100644 --- a/shoshimacs.el +++ b/shoshimacs.el @@ -52,7 +52,7 @@ (cadr pair))) (quote ,(seq-partition pairs 2))))) -(defvar *my-config* "~/projects/shoshimacs/shoshin-config.org" +(defvar *my-config* "~/projects/shoshimacs/shoshimacs.org" "Path to my main configuration file.") (defun my-configuration () @@ -182,8 +182,6 @@ (global-hl-line-mode t) -(load-theme (seq-random-elt my-chosen-themes)) - (mapc #'package-install my-themes-to-install) (package-install 'windresize) 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 |