nit: revise commentary in early-init.el
This commit is contained in:
parent
b93f398568
commit
2396262cfa
1 changed files with 12 additions and 10 deletions
|
@ -4,18 +4,20 @@
|
||||||
;; early-init.el was introduced in Emacs 27.1 and is loaded before init.el;
|
;; early-init.el was introduced in Emacs 27.1 and is loaded before init.el;
|
||||||
;; before Emacs initializes package.el and its UI; and before site files are
|
;; before Emacs initializes package.el and its UI; and before site files are
|
||||||
;; loaded. This is the best time to tweak Emacs (though any UI work will have to
|
;; loaded. This is the best time to tweak Emacs (though any UI work will have to
|
||||||
;; be deferred).
|
;; be deferred), and will always be where Doom's dirtiest (and config-agnostic)
|
||||||
|
;; startup optimizations will live.
|
||||||
;;
|
;;
|
||||||
;; This file is responsible for bootstrapping an interactive session, and is
|
;; Doom uses this file as its universal bootstrapper, for both interactive and
|
||||||
;; where all our dirtiest (and config-agnostic) startup hacks should live. It's
|
;; non-interactive sessions. It's also the heart of its bootloader, which lets
|
||||||
;; also home to Doom's bootloader, which lets you choose what Emacs config to
|
;; you switch between Emacs configs on demand using `--init-directory DIR'
|
||||||
;; load with one of two switches:
|
;; (which it has backported from Emacs 29) or `--profile NAME` (for more about
|
||||||
;; - '--init-directory DIR' (backported from Emacs 29)
|
;; this, read the Profiles section in docs/developers.org or
|
||||||
;; - Or Doom's profile system with '--profile NAME' (you declare configs in
|
;; `https://docs.doomemacs.org/developers').
|
||||||
;; $EMACSDIR/profiles.el or implicitly as directories in $EMACSDIR/profiles/).
|
|
||||||
;;
|
;;
|
||||||
;; You should *never* load this file in non-interactive sessions (e.g. batch
|
;; If you're writing a Doom-based batch script, or using Doom's CLI framework,
|
||||||
;; scripts). Load `doom-start' or use 'doom run' instead!
|
;; load this file to initialize Doom and its CLI framework. Then you may
|
||||||
|
;; optionally load `doom-start' to initialize your interactive config on top of
|
||||||
|
;; it, if you need it.
|
||||||
;;
|
;;
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue