From b4f6a27592e306a0d42fb287d146494d369cbf27 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Tue, 30 Oct 2018 06:56:42 +0100 Subject: [PATCH] Emacs: Switched to doom-one-light theme --- emacs/emacs.el | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/emacs/emacs.el b/emacs/emacs.el index 1661613..693d3ec 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -1389,12 +1389,23 @@ signature-file is the path to the file which contains the signature." ;; Nord theme ;; 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 - ;; 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))) + (load-theme 'doom-one-light t) + (doom-themes-treemacs-config) + (doom-themes-org-config))