Install the Nord theme

This commit is contained in:
Gergely Polonkai 2023-08-29 11:03:51 +02:00
parent 3c4462e761
commit e7e7f4c0e6
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4

View File

@ -31,10 +31,10 @@
(load "xdg-paths") (load "xdg-paths")
#+END_SRC #+END_SRC
** Load the tango dark theme ** Load the nord theme
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(load-theme 'tango-dark t) (load-theme 'nord t)
#+END_SRC #+END_SRC
* Emacs configuration * Emacs configuration
@ -165,7 +165,7 @@ it as early as possible.
(use-package custom (use-package custom
:ensure nil :ensure nil
:custom :custom
(custom-enabled-themes '(tango-dark tango))) (custom-enabled-themes '(nord)))
#+end_src #+end_src
** Default frame settings ** Default frame settings
@ -1286,13 +1286,13 @@ Before this can be used, make sure the [[https://zhm.github.io/symbola/][Symbola
#+begin_src emacs-lisp #+begin_src emacs-lisp
(defun gpolonkai/enable-dark-mode () (defun gpolonkai/enable-dark-mode ()
"Turn on dark mode." "Turn on dark mode."
(load-theme 'tango-dark) (load-theme 'nord)
(set-face-background 'hl-line "gray25") (set-face-background 'hl-line "gray25")
(set-face-background 'whitespace-line "orange4")) (set-face-background 'whitespace-line "orange4"))
(defun gpolonkai/enable-bright-mode () (defun gpolonkai/enable-bright-mode ()
"Turn on bright mode." "Turn on bright mode."
(load-theme 'tango) (load-theme 'nord)
(set-face-background 'hl-line "gray85") (set-face-background 'hl-line "gray85")
(set-face-background 'whitespace-line "gold3")) (set-face-background 'whitespace-line "gold3"))
@ -2720,6 +2720,14 @@ I dont always use the package menu, but when i do, i want to do it in style
(which-key-setup-minibuffer)) (which-key-setup-minibuffer))
#+end_src #+end_src
** The nord theme
[[https://www.nordtheme.com/][Website]]
#+begin_src emacs-lisp
(use-package nord-theme)
#+end_src
* Dired related packages * Dired related packages
** Collapse directories that only contain one file somewhere deep ** Collapse directories that only contain one file somewhere deep