summaryrefslogtreecommitdiff
path: root/emacs/.config/emacs-kj/early-init.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/.config/emacs-kj/early-init.el')
-rw-r--r--emacs/.config/emacs-kj/early-init.el21
1 files changed, 0 insertions, 21 deletions
diff --git a/emacs/.config/emacs-kj/early-init.el b/emacs/.config/emacs-kj/early-init.el
deleted file mode 100644
index fde5f3e..0000000
--- a/emacs/.config/emacs-kj/early-init.el
+++ /dev/null
@@ -1,21 +0,0 @@
-;;; early-init.el -*- lexical-binding: t; -*-
-
-;; Defer garbage collection further back in the startup process
-(setq gc-cons-threshold most-positive-fixnum)
-(setq-default inhibit-redisplay t
- inhibit-message t)
-;; These log messages are too annoying.
-(setq native-comp-async-report-warnings-errors 'silent)
-(add-hook 'window-setup-hook
- (lambda ()
- (setq-default inhibit-redisplay nil
- inhibit-message nil)
- (redisplay)))
-
-(setq package-enable-at-startup nil)
-
-(setq default-frame-alist '((undecorated . t)))
-(tool-bar-mode -1)
-(scroll-bar-mode -1)
-(tooltip-mode -1)
-(menu-bar-mode -1)