diff options
Diffstat (limited to 'emacs-prelude')
-rw-r--r-- | emacs-prelude/early-init.el | 14 |
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 |