From e87e53447fec01ebbc5d59905ee0b02f094eb805 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Tue, 13 Dec 2022 12:03:03 -0800 Subject: [PATCH] Prevent flashbang on emacs startup --- early-init.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/early-init.el b/early-init.el index 7c9f281..4ba7493 100644 --- a/early-init.el +++ b/early-init.el @@ -1,2 +1,8 @@ (setq native-comp-speed -1) (setq package-enable-at-startup nil) + +;; Anti-flashbang +(custom-set-faces + '(default ((t (:foreground "#b7c9ee" :background "#0d1017"))))) +(menu-bar-mode -1) +(tool-bar-mode -1)