Add elisp headers and foot for early-init.el and init.el

main
Sergio Alvariño 12 months ago
parent 5e5fcd2601
commit 2edb75a369

@ -1 +1,16 @@
;;; early-init.el --- Summary
;;
;;; Commentary:
;;
;; Emacs27 introduces early-init.el, which is run before init.el,
;; before package and UI initialization happens.
;;
;;; Code:
;;
;; Disable package.el in favor of straight.el
(setq package-enable-at-startup nil)
;;
;;
(provide 'early-init)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; early-init.el ends here

@ -1,3 +1,17 @@
;;; init.el --- The Emacs init file
;;
;;; Commentary:
;; This is the main configuration file for Emacs.
;; In this file:
;; - Set the bootstratp for straight.el
;; - Load use-package
;; - Load no-littering
;; - Set user-init-directory to ~/.cache/emacs
;; - Install the latest release of org
;; - Load the file ~/.emacs.d/myconfig.org
;;
;;; Code:
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; set up straight package manager
;;
@ -18,3 +32,8 @@
;; Install and configure use-package
(straight-use-package 'use-package)
(setq straight-use-package-by-default t)
;;
;;
(provide 'init)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; init.el ends here

Loading…
Cancel
Save