diff options
author | Case Duckworth | 2020-11-24 08:31:59 -0600 |
---|---|---|
committer | Case Duckworth | 2020-11-24 08:31:59 -0600 |
commit | e3222f85095cca7956afa9192573f12005628180 (patch) | |
tree | 6c46ddbd62cf231c657e51a7ef72eac7db65c18c | |
parent | Increase garbage collector early in init (diff) | |
download | emacs-e3222f85095cca7956afa9192573f12005628180.tar.gz emacs-e3222f85095cca7956afa9192573f12005628180.zip |
Whitespace? I'm guessing
-rw-r--r-- | config.org | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/config.org b/config.org index 9a8e8fb..990fe85 100644 --- a/config.org +++ b/config.org | |||
@@ -164,8 +164,8 @@ It's highly likely that the WTFPL is completely incompatible with the GPL, for w | |||
164 | #+begin_src emacs-lisp | 164 | #+begin_src emacs-lisp |
165 | (use-package use-package-custom-update | 165 | (use-package use-package-custom-update |
166 | :straight (use-package-custom-update | 166 | :straight (use-package-custom-update |
167 | :host github | 167 | :host github |
168 | :repo "a13/use-package-custom-update")) | 168 | :repo "a13/use-package-custom-update")) |
169 | #+end_src | 169 | #+end_src |
170 | 170 | ||
171 | ** Setup async | 171 | ** Setup async |
@@ -184,7 +184,7 @@ It's highly likely that the WTFPL is completely incompatible with the GPL, for w | |||
184 | "Basically `use-package''s `:custom', but without using either." | 184 | "Basically `use-package''s `:custom', but without using either." |
185 | `(progn | 185 | `(progn |
186 | (funcall (or (get ',var 'custom-set) #'set-default) | 186 | (funcall (or (get ',var 'custom-set) #'set-default) |
187 | ',var ,val))) | 187 | ',var ,val))) |
188 | #+end_src | 188 | #+end_src |
189 | 189 | ||
190 | * Theme | 190 | * Theme |
@@ -200,29 +200,29 @@ I'm using the [[https://protesilaos.com/modus-themes/][Modus]] themes. | |||
200 | (use-package modus-%1$s-theme | 200 | (use-package modus-%1$s-theme |
201 | :init | 201 | :init |
202 | (setq modus-%1$s-theme-slanted-constructs t | 202 | (setq modus-%1$s-theme-slanted-constructs t |
203 | modus-%1$s-theme-bold-constructs t | 203 | modus-%1$s-theme-bold-constructs t |
204 | modus-%1$s-theme-fringes 'subtle | 204 | modus-%1$s-theme-fringes 'subtle |
205 | modus-%1$s-theme-mode-line '3d | 205 | modus-%1$s-theme-mode-line '3d |
206 | modus-%1$s-theme-syntax 'yellow-comments | 206 | modus-%1$s-theme-syntax 'yellow-comments |
207 | modus-%1$s-theme-intense-hl-line nil | 207 | modus-%1$s-theme-intense-hl-line nil |
208 | modus-%1$s-theme-intense-paren-match t | 208 | modus-%1$s-theme-intense-paren-match t |
209 | modus-%1$s-theme-links nil | 209 | modus-%1$s-theme-links nil |
210 | modus-%1$s-theme-no-mixed-fonts nil | 210 | modus-%1$s-theme-no-mixed-fonts nil |
211 | modus-%1$s-theme-prompts nil | 211 | modus-%1$s-theme-prompts nil |
212 | modus-%1$s-theme-completions nil | 212 | modus-%1$s-theme-completions nil |
213 | modus-%1$s-theme-diffs nil | 213 | modus-%1$s-theme-diffs nil |
214 | modus-%1$s-theme-org-blocks 'grayscale | 214 | modus-%1$s-theme-org-blocks 'grayscale |
215 | modus-%1$s-theme-headings | 215 | modus-%1$s-theme-headings |
216 | '((1 . section) | 216 | '((1 . section) |
217 | (2 . line) | 217 | (2 . line) |
218 | (t . rainbow-line-no-bold)) | 218 | (t . rainbow-line-no-bold)) |
219 | modus-%1$s-theme-variable-pitch-headings nil | 219 | modus-%1$s-theme-variable-pitch-headings nil |
220 | modus-%1$s-theme-scale-headings t | 220 | modus-%1$s-theme-scale-headings t |
221 | modus-%1$s-theme-scale-1 1.1 | 221 | modus-%1$s-theme-scale-1 1.1 |
222 | modus-%1$s-theme-scale-2 1.15 | 222 | modus-%1$s-theme-scale-2 1.15 |
223 | modus-%1$s-theme-scale-3 1.21 | 223 | modus-%1$s-theme-scale-3 1.21 |
224 | modus-%1$s-theme-scale-4 1.27 | 224 | modus-%1$s-theme-scale-4 1.27 |
225 | modus-%1$s-theme-scale-5 1.33)) | 225 | modus-%1$s-theme-scale-5 1.33)) |
226 | theme)) | 226 | theme)) |
227 | #+end_src | 227 | #+end_src |
228 | 228 | ||