summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2021-01-02 16:25:47 -0600
committerCase Duckworth2021-01-02 16:25:47 -0600
commit97f01dc69ab4d6d50bc242218701643605714fb0 (patch)
tree6698754bacaf4d52e0622ce87743e93e098c52a5 /config.org
parentEnable set-mark-repeat-command-pop (diff)
downloademacs-97f01dc69ab4d6d50bc242218701643605714fb0.tar.gz
emacs-97f01dc69ab4d6d50bc242218701643605714fb0.zip
Move header-args to begin_src lines for *init.el
Diffstat (limited to 'config.org')
-rw-r--r--config.org12
1 files changed, 4 insertions, 8 deletions
diff --git a/config.org b/config.org index bcce566..d45c46e 100644 --- a/config.org +++ b/config.org
@@ -1306,11 +1306,8 @@ I’ve put org mode under Applications, as opposed to Writing, because it’s m
1306** Emacs' files 1306** Emacs' files
1307 1307
1308*** init.el 1308*** init.el
1309 :PROPERTIES:
1310 :header-args: :tangle init.el
1311 :END:
1312 1309
1313 #+BEGIN_SRC emacs-lisp 1310 #+BEGIN_SRC emacs-lisp :tangle init.el :comments no
1314 ;; init.el -*- lexical-binding: t -*- 1311 ;; init.el -*- lexical-binding: t -*-
1315 1312
1316 (setq load-prefer-newer t) 1313 (setq load-prefer-newer t)
@@ -1330,11 +1327,10 @@ I’ve put org mode under Applications, as opposed to Writing, because it’s m
1330 #+END_SRC 1327 #+END_SRC
1331 1328
1332*** early-init.el 1329*** early-init.el
1333:PROPERTIES:
1334:header-args: :tangle early-init.el
1335:END:
1336 1330
1337#+BEGIN_SRC emacs-lisp 1331#+BEGIN_SRC emacs-lisp :tangle early-init.el :comments no
1332 ;; early-init.el -*- no-byte-compile: t; -*-
1333
1338 ;; I use `straight.el' instead of `package.el'. 1334 ;; I use `straight.el' instead of `package.el'.
1339 (setq package-enable-at-startup nil) 1335 (setq package-enable-at-startup nil)
1340 1336