diff options
author | shoshin <shoshin@cicadas.surf> | 2022-07-04 19:42:54 -0500 |
---|---|---|
committer | shoshin <shoshin@cicadas.surf> | 2022-07-04 19:42:54 -0500 |
commit | ce7ae17b5d116f59b8e9139b467bc4c2bff5ed65 (patch) | |
tree | 505e3683b25fc07af12c912258e1e924007f1dab /shoshin-config.el | |
parent | 3d34ea8fe523bce774b01433f81fa98f034e22c0 (diff) |
Add: [emacs] preamble for separate custom-file
Diffstat (limited to 'shoshin-config.el')
-rw-r--r-- | shoshin-config.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/shoshin-config.el b/shoshin-config.el index 599c28f..e57b2b5 100644 --- a/shoshin-config.el +++ b/shoshin-config.el @@ -1,5 +1,8 @@ ;;; shoshimacs.el --- Beginner's Mind Config -*- lexical-binding:t -*- +(setq custom-file "~/.emacs.d/shoshimacs-custom.el") +(load custom-file) + ;;; Package Management (when (< emacs-major-version 28) (package-initialize) @@ -118,7 +121,7 @@ (mapc #'package-install my-themes-to-install) (defvar my-chosen-themes - '(cyberpunk dracula leuven modus-operandi modus-vivendi + '(cyberpunk dichromacy dracula leuven modus-operandi modus-vivendi 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)) |