Only required for packages and things you want to share with others
#+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
#+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