.emacs.d/lisp/init-themes.el

21 lines
436 B
EmacsLisp
Raw Normal View History

2024-09-06 11:42:11 +02:00
;;; 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