14 lines
417 B
EmacsLisp
14 lines
417 B
EmacsLisp
;;; theme.el -*- lexical-binding: t; -*-
|
|
|
|
;; Configure base16-theme
|
|
;; https://github.com/tinted-theming/base16-emacs
|
|
|
|
;; Set customization variables before loading the theme
|
|
;; (Optional: adjust these as needed)
|
|
(setq base16-distinct-fringe-background t
|
|
base16-highlight-mode-line 'box)
|
|
|
|
;; Set the theme to base16-default-dark
|
|
;; This overrides any theme set in core.el
|
|
(setq doom-theme 'base16-default-dark)
|