about summary refs log tree commit diff stats
path: root/emacs-prelude
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2021-08-10 07:46:12 +0100
committerDavid Morgan <djm_uk@protonmail.com>2021-08-10 07:46:12 +0100
commitef218b37be439be8cb23f1eaea96f7b2b803e436 (patch)
treea8b89c5e4fb00c60ec83fd6b47ecd17f0f218bc7 /emacs-prelude
parent707ce10be656ed76f375c721c18a3fcbd572d778 (diff)
downloaddotfiles-ef218b37be439be8cb23f1eaea96f7b2b803e436.tar.gz
early-init.el
Diffstat (limited to 'emacs-prelude')
-rw-r--r--emacs-prelude/early-init.el14
1 files changed, 14 insertions, 0 deletions
diff --git a/emacs-prelude/early-init.el b/emacs-prelude/early-init.el
new file mode 100644
index 0000000..7431ab6
--- /dev/null
+++ b/emacs-prelude/early-init.el
@@ -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