fix emacs themes

This commit is contained in:
zongor 2023-04-23 09:59:59 -04:00
parent 0b3ad012fc
commit d0165d882e
2 changed files with 5 additions and 2 deletions

5
.emacs
View File

@ -111,13 +111,16 @@
(require 'evil-org-agenda) (require 'evil-org-agenda)
(evil-org-agenda-set-keys)) (evil-org-agenda-set-keys))
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes")
(load-theme 'mazarbul t)
(use-package doom-themes (use-package doom-themes
:ensure t :ensure t
:config :config
;; Global settings (defaults) ;; Global settings (defaults)
(setq doom-themes-enable-bold t ; if nil, bold is universally disabled (setq doom-themes-enable-bold t ; if nil, bold is universally disabled
doom-themes-enable-italic t) ; if nil, italics is universally disabled doom-themes-enable-italic t) ; if nil, italics is universally disabled
(load-theme 'doom-monokai-classic t) ;;(load-theme 'doom-monokai-classic t)
;; Enable custom neotree theme (all-the-icons must be installed!) ;; Enable custom neotree theme (all-the-icons must be installed!)
(doom-themes-neotree-config) (doom-themes-neotree-config)
;; Corrects (and improves) org-mode's native fontification. ;; Corrects (and improves) org-mode's native fontification.

View File

@ -65,7 +65,7 @@
`(font-lock-macro-key-face ((t (:inherit font-lock-variable-name-face)))) `(font-lock-macro-key-face ((t (:inherit font-lock-variable-name-face))))
`(font-lock-const-face ((t (:foreground ,col_pur)))) `(font-lock-const-face ((t (:foreground ,col_pur))))
`(font-lock-resource-face ((t (:foreground ,col_org)))) `(font-lock-resource-face ((t (:foreground ,col_org))))
`(font-lock-debug-face ((t (:foreground ,co__red)))) `(font-lock-debug-face ((t (:foreground ,col_red))))
;; comments ;; comments
`(font-lock-comment-face ((t (:foreground ,col_gry)))) `(font-lock-comment-face ((t (:foreground ,col_gry))))