refactor(emacs): use doom themes
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m2s

This commit is contained in:
Price Hiller 2024-07-04 17:55:05 -05:00
parent f78f25d9ad
commit e632583fc8
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -124,14 +124,15 @@
'(tool-bar-mode nil))
;; Doom Themes
(use-package kanagawa-theme
(use-package doom-themes
:ensure t
:custom
(kanagwa-theme-org-bold t)
(kanagawa-theme-org-height t)
(kanagawa-theme-keyword-italic t)
(kanagawa-theme-comment-italic t)
(doom-themes-enable-bold t)
(doom-themes-enable-italic t)
:config
(load-theme 'kanagawa t))
(load-theme 'doom-one t)
(doom-themes-treemacs-config)
(doom-themes-org-config))
(use-package doom-modeline
:custom
@ -783,4 +784,4 @@
'(evil-goggles-undo-redo-change-face ((t (:inherit diff-changed))))
'(evil-goggles-undo-redo-remove-face ((t (:inherit diff-removed))))
'(evil-goggles-yank-face ((t (:inherit diff-changed))))
'(italic ((t (:slant oblique)))))
'(italic ((t (:slant oblique)))))