cb6d55b456
Switch Claude Code usage toward EAT-related setup and simplify theme loading to doom-one while adding the emacs-eat package declaration. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
626 B
EmacsLisp
25 lines
626 B
EmacsLisp
;;; theme.el -*- lexical-binding: t; -*-
|
|
|
|
;; Configure ewal
|
|
(use-package! ewal
|
|
:init
|
|
(setq ewal-use-built-in-always-p nil
|
|
ewal-use-built-in-on-failure-p t
|
|
ewal-built-in-palette "sexy-material"))
|
|
|
|
(use-package! ewal-doom-themes
|
|
:config
|
|
;; (load-theme 'ewal-doom-one t)
|
|
;;(enable-theme 'ewal-doom-one)
|
|
)
|
|
|
|
;; Set the theme to ewal-doom-one
|
|
;; (setq doom-theme 'ewal-doom-one)
|
|
(load-theme 'doom-one t)
|
|
(setq doom-theme 'doom-one)
|
|
|
|
;; Previous base16 config (commented out)
|
|
;; (setq base16-distinct-fringe-background t
|
|
;; base16-highlight-mode-line 'box)
|
|
;; (setq doom-theme 'base16-default-dark)
|