Add early-init for things that need to be first

This commit is contained in:
Evie Litherland-Smith 2024-12-20 08:37:42 +00:00
parent cc42b19197
commit fad5c108be

10
early-init.el Normal file
View file

@ -0,0 +1,10 @@
;;; early-init.el -- Needs to be set first -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
(setq use-package-check-before-init t
use-package-enable-imenu-support t
base16-theme-distinct-fringe-background t
base16-theme-highlight-mode-line 'contrast)
(provide 'early-init)
;;; early-init.el ends here