Skip to content

Commit

Permalink
Change theme in example-config.el to doom-one (#131)
Browse files Browse the repository at this point in the history
* Changed theme in example-config.el to `doom-one`

`doom-snazzy` isn't available after a fresh install.

* Changed occurences of `doom-snazzy` to `doom-one`

in examples, README and docs.
  • Loading branch information
sthesing authored Apr 25, 2022
1 parent c628f0f commit a58fe88
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ filesystem, it is created. However, just the path is created, the files
'(rational-ui-default-font
'(:font "JetBrains Mono" :weight light :height 185)))

(load-theme 'doom-snazzy t)
(load-theme 'doom-one t)

;; To not load `custom.el' after `config.el', uncomment this line.
;; (setq rational-load-custom-file nil)
Expand Down
6 changes: 3 additions & 3 deletions docs/rational-emacs.info
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ File: rational-emacs.info, Node: Example Configuration, Next: The customel fil
'(rational-ui-default-font
'(:font "JetBrains Mono" :weight light :height 185)))

(load-theme 'doom-snazzy t)
(load-theme 'doom-one t)



Expand Down Expand Up @@ -345,7 +345,7 @@ have something that looks more like this:
(require 'rational-completion)
(require 'rational-windows)

(load-theme 'doom-snazzy t)
(load-theme 'doom-one t)

(load "custom")
;;; example-config.el ends here
Expand Down Expand Up @@ -401,7 +401,7 @@ once. Here is the same example written differently.
'(:font "JetBrains Mono" :weight light :height 185))
(customize-set-variable 'rational-ui-display-line-numbers t)

(load-theme 'doom-snazzy t)
(load-theme 'doom-one t)


Listing 3.5: Example ‘config.el’ setting customization variables
Expand Down
6 changes: 3 additions & 3 deletions docs/rational-emacs.org
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Emacs configuration journey.
'(rational-ui-default-font
'(:font "JetBrains Mono" :weight light :height 185)))

(load-theme 'doom-snazzy t)
(load-theme 'doom-one t)

#+end_src

Expand Down Expand Up @@ -243,7 +243,7 @@ Emacs configuration journey.
(require 'rational-completion)
(require 'rational-windows)

(load-theme 'doom-snazzy t)
(load-theme 'doom-one t)

(load "custom")
;;; example-config.el ends here
Expand Down Expand Up @@ -297,7 +297,7 @@ Emacs configuration journey.
'(:font "JetBrains Mono" :weight light :height 185))
(customize-set-variable 'rational-ui-display-line-numbers t)

(load-theme 'doom-snazzy t)
(load-theme 'doom-one t)
#+end_src

*** Caveat on the timing of loading =custom.el=
Expand Down
2 changes: 1 addition & 1 deletion example-config.el
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'(rational-ui-default-font
'(:font "JetBrains Mono" :weight light :height 185)))

(load-theme 'doom-snazzy t)
(load-theme 'doom-one t)

;; To not load `custom.el' after `config.el', uncomment this line.
;; (setq rational-load-custom-file nil)
Expand Down
2 changes: 1 addition & 1 deletion examples/general/example-config.el
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'(rational-ui-default-font
'(:font "JetBrains Mono" :weight light :height 185)))

(load-theme 'doom-snazzy t)
(load-theme 'doom-one t)

;; To not load `custom.el' after `config.el', uncomment this line.
;; (setq rational-load-custom-file nil)
Expand Down

0 comments on commit a58fe88

Please sign in to comment.