chore: dump docs

This commit is contained in:
Evan Sarris 2022-07-02 01:49:52 -06:00
parent 582a4e79ca
commit 8d67ed5a39
No known key found for this signature in database
GPG Key ID: 45AE650321016B04
1 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@ for stock emacs.
```elisp
(straight-use-package
'(everforest-theme) :type git :repo "https://git.sr.ht/~theorytoe/everforest-theme")
'(everforest) :type git :repo "https://git.sr.ht/~theorytoe/everforest-theme")
(load-theme 'everforest-hard-dark t)
;; (load-theme 'everforest-hard-light t)
@ -29,10 +29,10 @@ for stock emacs.
### Doom Emacs (package!)
```elisp
(package! everforest-theme
(package! everforest
:recipe (:repo "https://git.sr.ht/~theorytoe/everforest-theme"))
(use-package! 'everforest-theme')
(use-package! 'everforest')
(load-theme 'everforest-hard-dark t)
;; (load-theme 'everforest-hard-light t)
@ -49,7 +49,7 @@ git clone https://git.sr.ht/~theorytoe/everforest-theme ~/.emacs.d/everforest-th
Add the theme to your custom-theme alist and load it
```elisp
(add-to-list 'custom-theme-load-path "~/.emacs.d/everforest-theme")
(add-to-list 'custom-theme-load-path "~/.emacs.d/everforest")
(load-theme 'everforest-hard-dark t)
```