From c0fd8895b95603b43fc9b764da8071a136170212 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Fri, 28 Mar 2025 20:04:16 +0100 Subject: [PATCH] feat(emacs): install catppuccin theme --- config/doom/config.el | 3 ++- config/doom/packages.el | 3 +++ config/fish/config.fish | 3 +++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/config/doom/config.el b/config/doom/config.el index bf6529a..79ed087 100644 --- a/config/doom/config.el +++ b/config/doom/config.el @@ -32,7 +32,8 @@ ;; There are two ways to load a theme. Both assume the theme is installed and ;; available. You can either set `doom-theme' or manually load a theme with the ;; `load-theme' function. This is the default: -(setq doom-theme 'doom-one) +(setq doom-theme 'catppuccin) +(setq catppuccin-flavor 'mocha) ;; This determines the style of line numbers in effect. If set to `nil', line ;; numbers are disabled. For relative line numbers, set this to `relative'. diff --git a/config/doom/packages.el b/config/doom/packages.el index b3322c7..0cc1e82 100644 --- a/config/doom/packages.el +++ b/config/doom/packages.el @@ -47,3 +47,6 @@ ;; (unpin! pinned-package another-pinned-package) ;; ...Or *all* packages (NOT RECOMMENDED; will likely break things) ;; (unpin! t) + +;; Catppuccin Theme +(package! catppuccin-theme) diff --git a/config/fish/config.fish b/config/fish/config.fish index 792aa4b..548395d 100644 --- a/config/fish/config.fish +++ b/config/fish/config.fish @@ -216,6 +216,9 @@ alias lg lazygit # Vim/Neovim alias v vim +# Emacs +alias emacs "emacs -nw" + if type nvim >/dev/null 2>&1 alias vim nvim end