summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2020-11-27 12:28:48 -0600
committerCase Duckworth2020-11-27 12:28:48 -0600
commit13fc04e7a15572075fd781bac2c5e494889f648d (patch)
tree39ab22eee9039d8e0bc2139ac3c1597eb7d909f1 /config.org
parentAdd 'edit' script (diff)
downloademacs-13fc04e7a15572075fd781bac2c5e494889f648d.tar.gz
emacs-13fc04e7a15572075fd781bac2c5e494889f648d.zip
Change :shebang to :comments no
The :shebang header argument makes the different files executable, which we
don't want.
Diffstat (limited to 'config.org')
-rw-r--r--config.org6
1 files changed, 4 insertions, 2 deletions
diff --git a/config.org b/config.org index 7ccbabe..7165432 100644 --- a/config.org +++ b/config.org
@@ -10,7 +10,8 @@ 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 :shebang ";; init.el -*- lexical-binding: t -*-" 13#+begin_src emacs-lisp :comments no
14;; init.el -*- lexical-binding: t -*-
14 (setq user-full-name "Case Duckworth" 15 (setq user-full-name "Case Duckworth"
15 user-mail-address "acdw@acdw.net") 16 user-mail-address "acdw@acdw.net")
16#+end_src 17#+end_src
@@ -116,7 +117,8 @@ It's highly likely that the WTFPL is completely incompatible with the GPL, for w
116 117
117* Early initiation 118* Early initiation
118 119
119#+begin_src emacs-lisp :tangle early-init.el :shebang ";; early-init.el -*- lexical-binding: t; no-byte-compile: t -*-" 120#+begin_src emacs-lisp :tangle early-init.el :comments no
121;; early-init.el -*- lexical-binding: t; no-byte-compile: t -*-
120 (setq load-prefer-newer t) 122 (setq load-prefer-newer t)
121#+end_src 123#+end_src
122 124