aboutsummaryrefslogtreecommitdiff
path: root/shoshin-config.org
diff options
context:
space:
mode:
Diffstat (limited to 'shoshin-config.org')
-rw-r--r--shoshin-config.org12
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