15 lines
260 B
EmacsLisp
15 lines
260 B
EmacsLisp
|
;; -*- lexical-binding: t; -*-
|
||
|
|
||
|
|
||
|
(use-package all-the-icons)
|
||
|
|
||
|
(use-package doom-themes
|
||
|
:config
|
||
|
(load-theme 'doom-dracula t)
|
||
|
(setq doom-themes-treemacs-theme "doom-atom")
|
||
|
(doom-themes-treemacs-config)
|
||
|
(doom-themes-org-config)
|
||
|
)
|
||
|
|
||
|
(provide 'jg-style)
|