Load themes via doom-themes
This commit is contained in:
parent
1e1d6ce4cd
commit
ee71223dc6
@ -31,12 +31,6 @@
|
||||
(load "xdg-paths")
|
||||
#+END_SRC
|
||||
|
||||
** Load the nord theme
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(load-theme 'nord t)
|
||||
#+END_SRC
|
||||
|
||||
* Emacs configuration
|
||||
|
||||
** Set up the package archives
|
||||
@ -247,15 +241,6 @@ it as early as possible.
|
||||
(column-number-mode t))
|
||||
#+end_src
|
||||
|
||||
** ~custom.el~ settings
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package custom
|
||||
:ensure nil
|
||||
:custom
|
||||
(custom-enabled-themes '(nord)))
|
||||
#+end_src
|
||||
|
||||
** Default frame settings
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
@ -1383,13 +1368,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 'nord)
|
||||
(load-theme 'doom-nord-light t)
|
||||
(set-face-background 'hl-line "gray25")
|
||||
(set-face-background 'whitespace-line "orange4"))
|
||||
|
||||
(defun gpolonkai/enable-bright-mode ()
|
||||
"Turn on bright mode."
|
||||
(load-theme 'nord)
|
||||
(load-theme 'doom-nord-aurora t)
|
||||
(set-face-background 'hl-line "gray85")
|
||||
(set-face-background 'whitespace-line "gold3"))
|
||||
|
||||
@ -2789,12 +2774,18 @@ 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]]
|
||||
** Doom themes
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package nord-theme)
|
||||
(use-package doom-themes
|
||||
:custom
|
||||
(doom-themes-enable-bold t)
|
||||
(doom-themes-enable-italic t)
|
||||
:config
|
||||
(load-theme 'doom-nord-aurora t)
|
||||
(doom-themes-visual-bell-config)
|
||||
(doom-themes-neotree-config)
|
||||
(doom-themes-org-config))
|
||||
#+end_src
|
||||
|
||||
* Dired related packages
|
||||
|
Loading…
Reference in New Issue
Block a user