From e7e7f4c0e65c5b755712afe6acd072e671d37ab8 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Tue, 29 Aug 2023 11:03:51 +0200 Subject: [PATCH] Install the Nord theme --- configuration.org | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/configuration.org b/configuration.org index ff05b88..75a8992 100644 --- a/configuration.org +++ b/configuration.org @@ -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 don’t 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