Switch to doom-theme doom-one

This commit is contained in:
Mark van der Putten 2024-05-30 21:25:54 +02:00
parent 15d806527d
commit 61855005b2

View File

@ -39,41 +39,46 @@
(eval-when-compile
(require 'init-const))
(use-package zenburn-theme
:ensure t
:config
(load-theme 'zenburn t)
)
;; (use-package timu-macos-theme
;; :ensure t
;; :config
;; (load-theme 'timu-macos t))
;; (use-package zenburn-theme
;; :ensure t
;; :config
;; (load-theme 'zenburn t)
;; )
;; DoomThemes
;; (use-package doom-themes
;; :custom-face
;; (cursor ((t (:background "BlanchedAlmond"))))
;; :config
;; ;; flashing mode-line on errors
;; (doom-themes-visual-bell-config)
;; ;; Corrects (and improves) org-mode's native fontification.
;; (doom-themes-org-config)
;; (load-theme 'doom-one t)
;; (defun switch-theme ()
;; "An interactive funtion to switch themes."
;; (interactive)
;; (disable-theme (intern (car (mapcar #'symbol-name custom-enabled-themes))))
;; (call-interactively #'load-theme)))
;; ;; -DoomThemes
(use-package doom-themes
:custom-face
(cursor ((t (:background "BlanchedAlmond"))))
:config
;; flashing mode-line on errors
(doom-themes-visual-bell-config)
;; Corrects (and improves) org-mode's native fontification.
(doom-themes-org-config)
(load-theme 'doom-one t)
(defun switch-theme ()
"An interactive funtion to switch themes."
(interactive)
(disable-theme (intern (car (mapcar #'symbol-name custom-enabled-themes))))
(call-interactively #'load-theme)))
;; -DoomThemes
;; ;; DoomModeline
;; (use-package doom-modeline
;; :custom
;; ;; Don't compact font caches during GC. Windows Laggy Issue
;; (inhibit-compacting-font-caches t)
;; (doom-modeline-minor-modes t)
;; (doom-modeline-icon t)
;; (doom-modeline-major-mode-color-icon t)
;; (doom-modeline-height 15)
;; :config
;; (doom-modeline-mode))
;; ;; -DoomModeline
;; DoomModeline
(use-package doom-modeline
:custom
;; Don't compact font caches during GC. Windows Laggy Issue
(inhibit-compacting-font-caches t)
(doom-modeline-minor-modes t)
(doom-modeline-icon t)
(doom-modeline-major-mode-color-icon t)
(doom-modeline-height 15)
:config
(doom-modeline-mode))
;; -DoomModeline
(provide 'init-theme)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;