File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -43,18 +43,20 @@ common defaults laid out:
43
43
``` emacs-lisp
44
44
(use-package doom-themes
45
45
:ensure t
46
- :config
46
+ :custom
47
47
;; Global settings (defaults)
48
- (setq doom-themes-enable-bold t ; if nil, bold is universally disabled
49
- doom-themes-enable-italic t) ; if nil, italics is universally disabled
48
+ (doom-themes-enable-bold t) ; if nil, bold is universally disabled
49
+ (doom-themes-enable-italic t) ; if nil, italics is universally disabled
50
+ ;; for treemacs users
51
+ (doom-themes-treemacs-theme "doom-atom") ; use "doom-colors" for less minimal icon theme
52
+ :config
50
53
(load-theme 'doom-one t)
51
54
52
55
;; Enable flashing mode-line on errors
53
56
(doom-themes-visual-bell-config)
54
57
;; Enable custom neotree theme (nerd-icons must be installed!)
55
58
(doom-themes-neotree-config)
56
59
;; or for treemacs users
57
- (setq doom-themes-treemacs-theme "doom-atom") ; use "doom-colors" for less minimal icon theme
58
60
(doom-themes-treemacs-config)
59
61
;; Corrects (and improves) org-mode's native fontification.
60
62
(doom-themes-org-config))
You can’t perform that action at this time.
0 commit comments