From 49feda3d73e98c0ca0670cb208f3c5ded723791b Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Sun, 21 Oct 2018 13:38:36 +0200 Subject: [PATCH] Emacs: switched to the fabulous nord theme --- emacs/emacs.el | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/emacs/emacs.el b/emacs/emacs.el index 6ad7d25..8984e75 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -1376,3 +1376,15 @@ signature-file is the path to the file which contains the signature." :load-path "org-wiki/" :config (setq org-wiki-location "~/wiki")) + +;; Nord theme +;; https://github.com/arcticicestudio/nord-emacs +(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)))