21 lines
466 B
EmacsLisp
21 lines
466 B
EmacsLisp
;;; theme.el -*- lexical-binding: t; -*-
|
|
|
|
;; Default Doom Theme
|
|
(setq doom-theme 'doom-one)
|
|
|
|
;; --- Ewal Configuration ---
|
|
(use-package! ewal
|
|
:disabled t
|
|
:init
|
|
(setq ewal-json-file "~/.cache/wal/colors.json"
|
|
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
|
|
:disabled t
|
|
:config
|
|
(load-theme 'ewal-doom-one t)
|
|
(enable-theme 'ewal-doom-one)
|
|
)
|