diff options
-rw-r--r-- | config.org | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/config.org b/config.org index 7b5de4e..abbc8f2 100644 --- a/config.org +++ b/config.org | |||
@@ -1,6 +1,6 @@ | |||
1 | #+TITLE:Emacs configuration, literate style | 1 | #+TITLE:Emacs configuration, literate style |
2 | #+AUTHOR:Case Duckworth | 2 | #+AUTHOR:Case Duckworth |
3 | #+PROPERTY: header-args :tangle init.el | 3 | #+PROPERTY: header-args :tangle init.el :comments both |
4 | #+EXPORT_FILE_NAME: README.md | 4 | #+EXPORT_FILE_NAME: README.md |
5 | #+OPTIONS: toc:nil | 5 | #+OPTIONS: toc:nil |
6 | #+OPTIONS: title:t | 6 | #+OPTIONS: title:t |
@@ -10,8 +10,7 @@ This is my Emacs configuration. It's also a literate =org-mode= file. Yeah, I' | |||
10 | 10 | ||
11 | * About me | 11 | * About me |
12 | 12 | ||
13 | #+begin_src emacs-lisp | 13 | #+begin_src emacs-lisp :shebang ";; init.el -*- lexical-binding: t -*-" |
14 | ;; init.el -*- lexical-binding: t -*- | ||
15 | (setq user-full-name "Case Duckworth" | 14 | (setq user-full-name "Case Duckworth" |
16 | user-mail-address "acdw@acdw.net") | 15 | user-mail-address "acdw@acdw.net") |
17 | #+end_src | 16 | #+end_src |
@@ -22,7 +21,7 @@ Copyright © 2020 Case Duckworth <acdw@acdw.net> | |||
22 | 21 | ||
23 | This work is free. You can redistribute it and/or modify it under the terms of the Do What the Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See the =LICENSE= file, tangled from the following source block, for details. | 22 | This work is free. You can redistribute it and/or modify it under the terms of the Do What the Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See the =LICENSE= file, tangled from the following source block, for details. |
24 | 23 | ||
25 | #+begin_src text :tangle LICENSE | 24 | #+begin_src text :tangle LICENSE :comments no |
26 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | 25 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
27 | 26 | ||
28 | Version 2, December 2004 | 27 | Version 2, December 2004 |
@@ -116,11 +115,8 @@ It's highly likely that the WTFPL is completely incompatible with the GPL, for w | |||
116 | 115 | ||
117 | * Early initiation | 116 | * Early initiation |
118 | 117 | ||
119 | #+begin_src emacs-lisp :tangle early-init.el | 118 | #+begin_src emacs-lisp :tangle early-init.el :shebang ";; early-init.el -*- lexical-binding: t; no-byte-compile: t -*-" |
120 | ;; early-init.el -*- lexical-binding: t; no-byte-compile: t -*- | ||
121 | |||
122 | (setq load-prefer-newer t) | 119 | (setq load-prefer-newer t) |
123 | |||
124 | #+end_src | 120 | #+end_src |
125 | 121 | ||
126 | ** Increase the garbage collector | 122 | ** Increase the garbage collector |