From 2799557f9d964f67d87c490446b7ea65a7e931c1 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 11 Nov 2017 11:44:20 +0100 Subject: [PATCH] [Init] Some initial comments --- init.el | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/init.el b/init.el index 5c83b1e..c530830 100644 --- a/init.el +++ b/init.el @@ -2,6 +2,18 @@ ;;; Commentary: +;; This is the main entry point for Emacs to load this configuration. The +;; structure is roughly as follows: +;; * first comes some preliminary setup, mostly setting up `package’; +;; * the main activation of the configuration is done in the function +;; `db/run-init’, which is installed in `after-init-hook’; it is thus run +;; after init.el has been read +;; * then comes setting up all the packages that can be used by this +;; configuration; most of these packages are not loaded however, and only +;; configuration hooks are installed (using `use-package’); this way a user +;; can choose in `db/run-init’ which configruation to activate without +;; changing much of the rest of the file. + ;;; Code: