From ec96c5f18ab7f398e24cd855d008e912e1f4c3d1 Mon Sep 17 00:00:00 2001 From: luxick Date: Tue, 1 Oct 2019 09:42:07 +0200 Subject: [PATCH] Switch zenburn to doom theme + modeline. --- setup-emacs.org | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/setup-emacs.org b/setup-emacs.org index c0de9cf..ebb4f49 100644 --- a/setup-emacs.org +++ b/setup-emacs.org @@ -95,15 +95,28 @@ This is my configuration for the emacs editor. * Theming ** Main Theme #+BEGIN_SRC emacs-lisp - (use-package zenburn-theme - :config - (load-theme 'zenburn t)) + (use-package doom-themes) + + ;; Global settings (defaults) + (setq doom-themes-enable-bold t ; if nil, bold is universally disabled + doom-themes-enable-italic t) ; if nil, italics is universally disabled + + ;; Load the theme (doom-one, doom-molokai, etc); keep in mind that each theme + ;; may have their own settings. + (load-theme 'doom-one-light t) + + ;; Enable flashing mode-line on errors + (doom-themes-visual-bell-config) + + ;; Corrects (and improves) org-mode's native fontification. + (doom-themes-org-config) #+END_SRC ** Modeline #+BEGIN_SRC emacs-lisp - (use-package powerline) - (powerline-default-theme) + (use-package doom-modeline + :ensure t + :hook (after-init . doom-modeline-mode)) #+END_SRC *** Minions Menu