From ee71223dc6e9de0b904bcd40e3fd782aaf0b368f Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Wed, 30 Aug 2023 17:26:54 +0200 Subject: [PATCH] Load themes via doom-themes --- configuration.org | 33 ++++++++++++--------------------- 1 file changed, 12 insertions(+), 21 deletions(-) diff --git a/configuration.org b/configuration.org index 4ee2c40..3b26a25 100644 --- a/configuration.org +++ b/configuration.org @@ -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