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
1 changed files with 13 additions and 5 deletions

View File

@ -31,10 +31,10 @@
(load "xdg-paths")
#+END_SRC
** Load the tango dark theme
** Load the nord theme
#+BEGIN_SRC emacs-lisp
(load-theme 'tango-dark t)
(load-theme 'nord t)
#+END_SRC
* Emacs configuration
@ -165,7 +165,7 @@ it as early as possible.
(use-package custom
:ensure nil
:custom
(custom-enabled-themes '(tango-dark tango)))
(custom-enabled-themes '(nord)))
#+end_src
** 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
(defun gpolonkai/enable-dark-mode ()
"Turn on dark mode."
(load-theme 'tango-dark)
(load-theme 'nord)
(set-face-background 'hl-line "gray25")
(set-face-background 'whitespace-line "orange4"))
(defun gpolonkai/enable-bright-mode ()
"Turn on bright mode."
(load-theme 'tango)
(load-theme 'nord)
(set-face-background 'hl-line "gray85")
(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))
#+end_src
** The nord theme
[[https://www.nordtheme.com/][Website]]
#+begin_src emacs-lisp
(use-package nord-theme)
#+end_src
* Dired related packages
** Collapse directories that only contain one file somewhere deep