From 4aa0fc1fd695be870b224af620fd9d165bcca91d Mon Sep 17 00:00:00 2001 From: tavo-wasd Date: Sun, 7 Jul 2024 08:52:42 -0600 Subject: [PATCH] pimp gruvbox --- emacs/init.el | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/emacs/init.el b/emacs/init.el index 6e91c77..2737e23 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -85,12 +85,24 @@ (add-to-list 'default-frame-alist '(font . "JetBrains Mono-10.5")))) (use-package doom-themes - :init (load-theme 'doom-peacock t)) + :init (load-theme 'doom-gruvbox t)) (custom-set-faces - '(default ((t (:background "#1d2021"))))) + '(default ((t (:background "#1d2021")))) + '(org-block ((t (:background "#282828")))) + '(org-quote ((t (:background "#282828"))))) + (custom-set-faces - '(hl-line ((t (:background "gray20" :underline nil))))) + '(mode-line ((t (:background "#282828" :foreground "#a89984" :box nil)))) + '(mode-line-inactive ((t (:background "#282828" :foreground "#504945" :box nil))))) + +(custom-set-faces + '(centaur-tabs-selected ((t (:background "#282828" :foreground "#a89984" :box nil)))) + '(centaur-tabs-unselected ((t (:background "#1d2021" :foreground "#504945" :box nil)))) + ) + +;; (custom-set-faces +;; '(hl-line ((t (:background "gray20" :underline nil))))) ;; --- (use-package paren :ensure nil