early-init.el

This commit is contained in:
David Morgan 2021-08-10 07:46:12 +01:00
parent 707ce10be6
commit ef218b37be
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
;;; early-init.el --- Early Init File -*- lexical-binding: t; no-byte-compile: t -*-
(setq gc-cons-threshold most-positive-fixnum
gc-cons-percentage 0.6)
(push '(menu-bar-lines . 0) default-frame-alist)
(push '(tool-bar-lines . 0) default-frame-alist)
(push '(vertical-scroll-bars) default-frame-alist)
(setq frame-inhibit-implied-resize t)
; (setq comp-deferred-compilation nil)
;;; early-init.el ends here