summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--config.org31
1 files changed, 27 insertions, 4 deletions
diff --git a/config.org b/config.org index 705615c..d99c918 100644 --- a/config.org +++ b/config.org
@@ -1431,9 +1431,10 @@ This runs Emacs with the =--debug-init= option enabled.
1431<<w32-bat-common>> 1431<<w32-bat-common>>
1432"%EMACS%" --debug-init %* 1432"%EMACS%" --debug-init %*
1433#+end_src 1433#+end_src
1434
1434* Appendices 1435* Appendices
1435 1436
1436** =config.el= 1437** config.el
1437:PROPERTIES: 1438:PROPERTIES:
1438:header-args: :tangle config.el :noweb yes 1439:header-args: :tangle config.el :noweb yes
1439:END: 1440:END:
@@ -1446,24 +1447,42 @@ my config here /logically/, while keeping the generated file organized
1446*** Enable lexical binding 1447*** Enable lexical binding
1447 1448
1448#+begin_src emacs-lisp 1449#+begin_src emacs-lisp
1449 ;; config.el -*- lexical-binding: t -*- 1450 ;;; config.el --- personal configuration -*- lexical-binding: t -*-
1450#+end_src 1451#+end_src
1451 1452
1452*** Disclaimer 1453*** Header & disclaimer
1453:PROPERTIES: 1454:PROPERTIES:
1454:header-args: :noweb-ref disclaimer 1455:header-args: :noweb-ref disclaimer
1455:END: 1456:END:
1456 1457
1457#+begin_src emacs-lisp 1458#+begin_src emacs-lisp
1459 ;; Copyright (C) 2020 Case Duckworth
1460
1461 ;; Author: Case Duckworth <acdw@acdw.net>
1462 ;; Created: Sometime during the Covid-19 lockdown, 2019
1463 ;; Keywords: configuration
1464 ;; URL: https://tildegit.org/acdw/emacs
1465
1466 ;; This file is not part of GNU Emacs.
1467
1468 ;;; Commentary:
1458 ;; This file is automatically tangled from config.org. 1469 ;; This file is automatically tangled from config.org.
1459 ;; Hand edits will be overwritten! 1470 ;; Hand edits will be overwritten!
1471
1460#+end_src 1472#+end_src
1461 1473
1462*** The rest 1474*** The rest
1463 1475
1464#+begin_src emacs-lisp 1476#+begin_src emacs-lisp
1477 <<disclaimer>>
1478 ;;; Code:
1479
1465 ;;; REQUIRES 1480 ;;; REQUIRES
1466 <<requires>> 1481 <<requires>>
1482
1483 ;;; ACDW MODE
1484 <<acdw-mode>>
1485
1467 ;;; PACKAGES 1486 ;;; PACKAGES
1468 ;; straight.el depends on git, which /should be/ find-able by the PATH 1487 ;; straight.el depends on git, which /should be/ find-able by the PATH
1469 ;; manipulation in early-init.el. Just in case, though, we'll check 1488 ;; manipulation in early-init.el. Just in case, though, we'll check
@@ -1561,12 +1580,16 @@ the package manager or the UI code. The Info says we should put as
1561little as possible in this file, so I only have what I need. 1580little as possible in this file, so I only have what I need.
1562 1581
1563#+begin_src emacs-lisp 1582#+begin_src emacs-lisp
1564 ;; early-init.el -*- no-byte-compile: t; -*- 1583 ;;; early-init.el -*- no-byte-compile: t; -*-
1565 <<disclaimer>> 1584 <<disclaimer>>
1585 ;;; Code:
1586
1566 ;; BOOTSTRAP PACKAGE MANAGEMENT 1587 ;; BOOTSTRAP PACKAGE MANAGEMENT
1567 <<early-init-package>> 1588 <<early-init-package>>
1568 ;; SETUP FRAME 1589 ;; SETUP FRAME
1569 <<early-init-frame>> 1590 <<early-init-frame>>
1591
1592 ;;; early-init.el ends here
1570#+end_src 1593#+end_src
1571 1594
1572** License 1595** License