diff options
Diffstat (limited to 'early-init.el')
-rw-r--r-- | early-init.el | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/early-init.el b/early-init.el index 313b696..91b9fcd 100644 --- a/early-init.el +++ b/early-init.el @@ -27,11 +27,14 @@ (setq frame-resize-pixelwise t) (tool-bar-mode -1) ; All these tools are in the menu-bar anyway (setq default-frame-alist '((fullscreen . maximized) - (vertical-scroll-bars . nil) - (horizontal-scroll-bars . nil) + + ;; You can turn off scroll bars by uncommenting these lines: + ;; (vertical-scroll-bars . nil) + ;; (horizontal-scroll-bars . nil) + + ;; Setting the face in here prevents flashes of + ;; color as the theme gets activated + (background-color . "#000000") (ns-appearance . dark) - (ns-transparent-titlebar . t) - (alpha-background . 50))) + (ns-transparent-titlebar . t))) -(set-face-background 'default "#000000") -(set-face-foreground 'default "#cccccc") |