From 1046cd14a216c45e17c512107377efac89412d42 Mon Sep 17 00:00:00 2001 From: Correl Date: Sun, 21 May 2023 20:58:17 -0400 Subject: [PATCH] [emacs] Use catppuccin theme --- .doom.d/config.org | 6 ++++-- .doom.d/packages.el | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.doom.d/config.org b/.doom.d/config.org index 35b2141..3afe006 100644 --- a/.doom.d/config.org +++ b/.doom.d/config.org @@ -4,9 +4,11 @@ * Look And Feel ** Theme -I'm feeling the shades of purple theme lately. +It's Catppuccin time! #+begin_src emacs-lisp - (setq doom-theme 'doom-shades-of-purple) + (use-package! catppuccin-theme + :config (setq catppuccin-flavor 'macchiato + doom-theme 'catppuchin)) #+end_src ** Default font #+begin_src emacs-lisp diff --git a/.doom.d/packages.el b/.doom.d/packages.el index 4964a29..496093d 100644 --- a/.doom.d/packages.el +++ b/.doom.d/packages.el @@ -8,6 +8,7 @@ (package! arduino-mode) (package! arduino-cli-mode) +(package! catppuccin-theme) (package! counsel) (package! desktop-environment) (package! elcord)