Create a new config file for themes.

This commit is contained in:
KJ
2023-11-06 20:55:18 -04:00
parent e40aa8d194
commit d04c3baf44
3 changed files with 72 additions and 40 deletions

View File

@ -67,46 +67,6 @@
;; Block until current queue processed.
(elpaca-wait)
;; Theme
;; (use-package dracula-theme
;; :defer t
;; :hook
;; (elpaca-after-init . (lambda()
;; (load-theme 'dracula t)
;; (set-face-attribute 'default nil :font "Fira Code Retina" :height 112) ; Font
;; ))
;; )
;; (use-package adwaita-dark-theme
;; :defer t
;; :hook
;; (elpaca-after-init . (lambda()
;; (load-theme 'adwaita-dark t)
;; (set-face-attribute 'default nil :font "Fira Code Retina" :height 112) ; Font
;; ))
;; )
;; (use-package adwaita-theme
;; :elpaca nil
;; :defer t
;; :hook
;; (elpaca-after-init . (lambda()
;; (load-theme 'adwaita t)
;; (set-face-attribute 'default nil :font "Fira Code Retina" :height 112) ; Font
;; ))
;; )
(use-package modus-themes
:elpaca nil
:defer t
:hook
(elpaca-after-init . (lambda()
(load-theme 'modus-operandi-tinted t)
(set-face-attribute 'default nil :font "Fira Code Retina" :height 112) ; Font
))
)
(defconst private-dir (expand-file-name "private" user-emacs-directory))
(defconst temp-dir (format "%s/cache" private-dir)
"Hostname-based elisp temp directories.")