core: minor refactors and comment revisions
This commit is contained in:
parent
3b9aee6868
commit
e2a11d24fd
10 changed files with 85 additions and 55 deletions
22
init.el
22
init.el
|
@ -33,5 +33,25 @@
|
|||
(load (concat (file-name-directory load-file-name) "early-init")
|
||||
nil t))
|
||||
|
||||
;; And let 'er rip!
|
||||
;; Ensure Doom's core libraries are properly initialized, autoloads file is
|
||||
;; loaded, and hooks set up for an interactive session.
|
||||
(doom-initialize)
|
||||
|
||||
;; Now we load all enabled modules in the order dictated by your `doom!' block
|
||||
;; in $DOOMDIR/init.el. `doom-initialize-modules' loads them (and hooks) in the
|
||||
;; given order:
|
||||
;;
|
||||
;; $DOOMDIR/init.el
|
||||
;; {$DOOMDIR,~/.emacs.d}/modules/*/*/init.el
|
||||
;; `doom-before-init-modules-hook'
|
||||
;; {$DOOMDIR,~/.emacs.d}/modules/*/*/config.el
|
||||
;; `doom-init-modules-hook'
|
||||
;; $DOOMDIR/config.el
|
||||
;; `doom-after-init-modules-hook'
|
||||
;; `after-init-hook'
|
||||
;; `emacs-startup-hook'
|
||||
;; `doom-init-ui-hook'
|
||||
;; `window-setup-hook'
|
||||
;;
|
||||
;; And then we're good to go!
|
||||
(doom-initialize-modules)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue