feat(emacs): install catppuccin theme

This commit is contained in:
Stefan Imhoff
2025-03-28 20:04:16 +01:00
parent 7c9777f0d5
commit c0fd8895b9
3 changed files with 8 additions and 1 deletions

View File

@@ -32,7 +32,8 @@
;; There are two ways to load a theme. Both assume the theme is installed and ;; 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 ;; available. You can either set `doom-theme' or manually load a theme with the
;; `load-theme' function. This is the default: ;; `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 ;; 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'. ;; numbers are disabled. For relative line numbers, set this to `relative'.

View File

@@ -47,3 +47,6 @@
;; (unpin! pinned-package another-pinned-package) ;; (unpin! pinned-package another-pinned-package)
;; ...Or *all* packages (NOT RECOMMENDED; will likely break things) ;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
;; (unpin! t) ;; (unpin! t)
;; Catppuccin Theme
(package! catppuccin-theme)

View File

@@ -216,6 +216,9 @@ alias lg lazygit
# Vim/Neovim # Vim/Neovim
alias v vim alias v vim
# Emacs
alias emacs "emacs -nw"
if type nvim >/dev/null 2>&1 if type nvim >/dev/null 2>&1
alias vim nvim alias vim nvim
end end