emacs/early-init.el
Maciej Szlosarczyk 0c09dcf198
All checks were successful
/ Test config on 20 (push) Successful in 31s
Rework OCaml setup, and move to emacs-plus homebrew
2024-08-31 20:29:00 +03:00

20 lines
468 B
EmacsLisp

;;; +early-init.el --- summary
;; Author: Maciej Szlosarczyk
;; Maintainer: Maciej Szlosarczyk
;; Version: 0.1-snapshot
;;; Commentary:
;; early-init does a thing.
;;; Code:
;; Disable built-in package management
(setq package-enable-at-startup nil)
;; (add-to-list 'default-frame-alist '(undecorated . t))
;; (add-to-list 'default-frame-alist '(undecorated-round . t))
;; Log garbage collection.
(setq garbage-collection-messages t)
;;; early-init.el ends here