I'm not actually using it and it's just bloat at this point. This speeds up the startup significantly. Remove what you don't need.
18 lines
351 B
EmacsLisp
18 lines
351 B
EmacsLisp
;;; early-init.el --- Early Init -*- lexical-binding: t; -*-
|
|
|
|
;;; Commentary:
|
|
;; Early init configuration for Emacs Solo
|
|
;;
|
|
|
|
;;; Code:
|
|
|
|
|
|
;; Only care about errors in *Messages* buffer
|
|
(setq warning-minimum-level :error)
|
|
|
|
;; We control when packages are enabled
|
|
(setq package-enable-at-startup nil)
|
|
|
|
(provide 'early-init)
|
|
|
|
;;; early-init.el ends here
|