;;; init-themes.el --- Defaults for themes -*- lexical-binding: t -*- ;;; Commentary: ;;; Code: (require-package 'catppuccin-theme) ;; Don't prompt to confirm theme safety. This avoids problems with ;; first-time startup on Emacs > 26.3. (setq custom-safe-themes t) ;; If you don't customize it, this is the theme you get. (setq-default custom-enabled-themes '(catppuccin)) (provide 'init-themes) ;;; init-themes.el ends here