13 lines
428 B
EmacsLisp
13 lines
428 B
EmacsLisp
|
(use-package doom-themes
|
||
|
:ensure t
|
||
|
:config
|
||
|
;; Global settings (defaults)
|
||
|
(setq doom-themes-enable-bold t ; if nil, bold is universally disabled
|
||
|
doom-themes-enable-italic t) ; if nil, italics is universally disabled
|
||
|
(load-theme 'doom-one t)
|
||
|
|
||
|
;; Enable flashing mode-line on errors
|
||
|
(doom-themes-visual-bell-config)
|
||
|
;; Corrects (and improves) org-mode's native fontification.
|
||
|
(doom-themes-org-config))
|