emacs: added catppuccin theme

This commit is contained in:
Aly Raffauf 2024-03-25 16:07:16 -04:00
parent bae8a0b431
commit 43ece3902a
2 changed files with 6 additions and 1 deletions

View file

@ -25,6 +25,7 @@
enable = true;
extraPackages = ( epkgs: (with epkgs; [
better-defaults
catppuccin-theme
markdown-mode
nix-mode
org

View file

@ -1,3 +1,7 @@
; Load catppuccin theme.
(load-theme 'catppuccin :no-confirm)
(setq catppuccin-flavor 'latte) ;; or 'latte, 'macchiato, or 'mocha
; 4 spaces > tabs.
(setq-default indent-tabs-mode nil)
(setq-default tab-width 4)