emacs/early-init.el

18 lines
336 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)
;; Recommended by elpaca
(setq package-enable-at-startup nil)
(provide 'early-init)
;;; early-init.el ends here