diff options
author | shoshin <shoshin@cicadas.surf> | 2022-07-04 15:22:12 -0500 |
---|---|---|
committer | shoshin <shoshin@cicadas.surf> | 2022-07-04 15:22:12 -0500 |
commit | 9da679784acdad9664ec3c1ea661784fbafa4342 (patch) | |
tree | 71e60594eeaccd406f5149901bf280490d520f3f /shoshin-config.org | |
parent | a1e148a6810bfc8e25cdd8e789de30068d342ff9 (diff) |
Add: [themes] install/chosen vars & load random on init
Diffstat (limited to 'shoshin-config.org')
-rw-r--r-- | shoshin-config.org | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/shoshin-config.org b/shoshin-config.org index 224c0c1..d762b3f 100644 --- a/shoshin-config.org +++ b/shoshin-config.org @@ -608,9 +608,15 @@ add other hooks to ~lin-mode-hooks~ ** Themes #+begin_src emacs-lisp - (setq my-chosen-themes - '(cyberpunk-theme dracula-theme)) - (mapc #'package-install my-chosen-themes) + (defvar my-themes-to-install + '(alect-themes cyberpunk-theme dracula-theme nano-theme) + "List of themes to install when loading shoshimacs config.") + (mapc #'package-install my-themes-to-install) + + (defvar my-chosen-themes + '(cyberpunk dracula nano-dark nano-light tango tango-dark) + "List of themes I prefer for narrowing and random selection.") + (load-theme (seq-random-elt my-chosen-themes)) #+end_src ** windresize |