From fad5c108bedaf57bcf717ed76cf37980fe20a5ac Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Fri, 20 Dec 2024 08:37:42 +0000 Subject: [PATCH] Add early-init for things that need to be first --- early-init.el | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 early-init.el diff --git a/early-init.el b/early-init.el new file mode 100644 index 0000000..71bcb6e --- /dev/null +++ b/early-init.el @@ -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