]> git.earman.xyz Git - emacsinit.git/commitdiff
Remove unneeded footer/header
authorrearman <rearman@r717.net>
Mon, 11 May 2026 13:20:53 +0000 (09:20 -0400)
committerrearman <rearman@r717.net>
Mon, 11 May 2026 13:20:53 +0000 (09:20 -0400)
Only required for packages and things you want to share with others

config.org

index 3b1a4bc17d00724fe1e583689366eda5f5b51e7a..4be482fb10b04a1ec685007c65a4d2799646f430 100644 (file)
@@ -1,15 +1,11 @@
 #+TITLE: Emacs literate config
 #+STARTUP: noindent
-#+PROPERTY: header-args emacs-lisp :tangle yes
+#+PROPERTY: header-args :tangle yes
 
 * Header
+Set up the correct lexical binding to avoid screaming compiler
 #+BEGIN_SRC emacs-lisp
 ;;; config.el --- Emacs Configuration  -*- lexical-binding: t; -*-
-
-;; This file is not part of GNU emacs
-
-;;; Code:
-
 #+END_SRC
 * Load libraries
 Libraries Not from the package manager
@@ -1356,7 +1352,3 @@ Disable it by making it save to a temp file (stolen from prot)
 #+BEGIN_SRC emacs-lisp
 (setq custom-file (make-temp-file "emacs-custom-"))
 #+END_SRC
-* Footer
-#+BEGIN_SRC emacs-lisp
-;;; config.el ends here
-#+END_SRC