diff options
Diffstat (limited to 'Emacs/.config/emacs/early-init.el')
-rw-r--r-- | Emacs/.config/emacs/early-init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/early-init.el b/Emacs/.config/emacs/early-init.el index 0a4881c..ebe4062 100644 --- a/Emacs/.config/emacs/early-init.el +++ b/Emacs/.config/emacs/early-init.el @@ -46,6 +46,7 @@ ;; don't use x resources lol (advice-add #'x-apply-session-resources :override #'ignore) + ;; turn off the menu bar, tool bar, scroll bar, fringes ;; also set the transparency (active inactive) (setq-default @@ -60,6 +61,9 @@ tool-bar-mode nil scroll-bar-mode nil) +;; no flash bang, please +(set-face-background 'default "#0a0a0a") + ;; Disable making the tool bar (advice-add #'tool-bar-setup :override #'ignore) |