diff options
author | shoshin <shoshin@cicadas.surf> | 2022-09-07 19:59:13 -0500 |
---|---|---|
committer | shoshin <shoshin@cicadas.surf> | 2022-09-07 19:59:13 -0500 |
commit | 9b8b5ba34e37290a0d615881ba8792f414bb5079 (patch) | |
tree | 7b34e8ddad3ea7dcc4c6674e204fa909c4f85b19 | |
parent | 0ea0cf9e3650a60bb231be0a3b354c90cf950048 (diff) |
Add: ef-[themes] package, themes to my-chosen-themes
-rw-r--r-- | shoshimacs.el | 7 | ||||
-rw-r--r-- | shoshimacs.org | 7 |
2 files changed, 10 insertions, 4 deletions
diff --git a/shoshimacs.el b/shoshimacs.el index 7fb4af4..637d5b0 100644 --- a/shoshimacs.el +++ b/shoshimacs.el @@ -13,12 +13,15 @@ (string-trim (with-temp-buffer (shell-command "hostname" t ) (buffer-string)))) (defvar my-themes-to-install - '(cyberpunk-theme dracula-theme nano-theme) + '(cyberpunk-theme dracula-theme nano-theme ef-themes) "List of themes to install when loading shoshimacs config.") (defvar my-chosen-themes '(cyberpunk dichromacy dracula leuven modus-operandi modus-vivendi - nano-dark nano-light tango tango-dark) + nano-dark nano-light tango tango-dark + ef-day ef-dark ef-light ef-night + ef-autumn ef-spring ef-summer ef-winter + ef-deuteranopia-dark ef-deuteranopia-light) "List of themes I prefer for narrowing and random selection.") ;;; Package Management diff --git a/shoshimacs.org b/shoshimacs.org index c1a3386..02722b7 100644 --- a/shoshimacs.org +++ b/shoshimacs.org @@ -832,7 +832,7 @@ not there. then i can ~mapc~ #'package-install over the list of themes. #+begin_src emacs-lisp :noweb-ref defvars (defvar my-themes-to-install - '(cyberpunk-theme dracula-theme nano-theme) + '(cyberpunk-theme dracula-theme nano-theme ef-themes) "List of themes to install when loading shoshimacs config.") #+end_src @@ -850,7 +850,10 @@ candidates to ~consult-themes~. #+begin_src emacs-lisp :noweb-ref defvars (defvar my-chosen-themes '(cyberpunk dichromacy dracula leuven modus-operandi modus-vivendi - nano-dark nano-light tango tango-dark) + nano-dark nano-light tango tango-dark + ef-day ef-dark ef-light ef-night + ef-autumn ef-spring ef-summer ef-winter + ef-deuteranopia-dark ef-deuteranopia-light) "List of themes I prefer for narrowing and random selection.") #+end_src |