Emacs: Switched to doom-one-light theme
This commit is contained in:
parent
30d0dd4243
commit
b4f6a27592
1 changed files with 19 additions and 8 deletions
|
@ -1389,12 +1389,23 @@ signature-file is the path to the file which contains the signature."
|
||||||
|
|
||||||
;; Nord theme
|
;; Nord theme
|
||||||
;; https://github.com/arcticicestudio/nord-emacs
|
;; https://github.com/arcticicestudio/nord-emacs
|
||||||
(use-package nord-theme
|
;; (use-package nord-theme
|
||||||
|
;; :config
|
||||||
|
;; ;; fixed shitty Emacs behavior
|
||||||
|
;; ;; fix for theme not loading in deamon mode
|
||||||
|
;; (if (daemonp)
|
||||||
|
;; (add-hook 'after-make-frame-functions
|
||||||
|
;; (lambda (frame)
|
||||||
|
;; (with-selected-frame frame (load-theme 'nord t))))
|
||||||
|
;; (load-theme 'nord t)))
|
||||||
|
|
||||||
|
;; Doom theme
|
||||||
|
;; https://github.com/hlissner/emacs-doom-themes
|
||||||
|
(use-package doom-themes
|
||||||
|
:init
|
||||||
|
(setq doom-themes-enable-bold t
|
||||||
|
doom-themes-enable-italic t)
|
||||||
:config
|
:config
|
||||||
;; fixed shitty Emacs behavior
|
(load-theme 'doom-one-light t)
|
||||||
;; fix for theme not loading in deamon mode
|
(doom-themes-treemacs-config)
|
||||||
(if (daemonp)
|
(doom-themes-org-config))
|
||||||
(add-hook 'after-make-frame-functions
|
|
||||||
(lambda (frame)
|
|
||||||
(with-selected-frame frame (load-theme 'nord t))))
|
|
||||||
(load-theme 'nord t)))
|
|
||||||
|
|
Loading…
Reference in a new issue