Install the Nord theme
This commit is contained in:
parent
3c4462e761
commit
e7e7f4c0e6
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user