aboutsummaryrefslogtreecommitdiff
path: root/early-init.el
diff options
context:
space:
mode:
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el13
1 files changed, 13 insertions, 0 deletions
diff --git a/early-init.el b/early-init.el
index 24b53b0..9b5474f 100644
--- a/early-init.el
+++ b/early-init.el
@@ -35,3 +35,16 @@
35 35
36;; Disable scroll bars 36;; Disable scroll bars
37(push '(vertical-scroll-bars . 0) default-frame-alist) 37(push '(vertical-scroll-bars . 0) default-frame-alist)
38
39
40;; ---------------------------------
41;; Maximize frame on startup
42;; -------------------------
43;; Resizing is one of the primary
44;; sources of visual glitching.
45;; ---------------------------------
46
47(push '(fullscreen . maximized) initial-frame-alist)
48(push '(ns-transparent-titlebar . t) default-frame-alist)
49(setq frame-inhibit-implied-resize t
50 frame-resize-pixelwise t)