Emacs: switched to the fabulous nord theme
This commit is contained in:
parent
f86154d391
commit
49feda3d73
1 changed files with 12 additions and 0 deletions
|
@ -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)))
|
||||
|
|
Loading…
Reference in a new issue