From fa1c5305f17693e246846da1fe343a0e5cc742c8 Mon Sep 17 00:00:00 2001 From: rearman Date: Mon, 9 Jan 2023 09:31:40 -0500 Subject: [PATCH] Move back to package.el from straight Moving away from straight due to issues with magit after update. Moving some things to early-init.el (same things Prot. has in his) --- early-init.el | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/early-init.el b/early-init.el index 512068a..c7bd6bd 100644 --- a/early-init.el +++ b/early-init.el @@ -1 +1,13 @@ -(setq package-enable-at-startup nil) +(menu-bar-mode -1) +(tool-bar-mode -1) +(scroll-bar-mode -1) + +(setq default-directory "~/" + inhibit-splash-screen t + inhibit-startup-screen t + inhibit-startup-message t + inhibit-startup-buffer-menu t + initial-scratch-message nil + server-client-instructions nil) + +(setq package-enable-at-startup t) -- 2.39.5