From d5a9b610f6940cdad314d265f1720ffd524c8879 Mon Sep 17 00:00:00 2001 From: Martin Polden Date: Thu, 3 Feb 2022 13:54:43 +0100 Subject: appearance: Hide tab bar --- lisp/init-appearance.el | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'lisp/init-appearance.el') diff --git a/lisp/init-appearance.el b/lisp/init-appearance.el index 144564d..2cd4082 100644 --- a/lisp/init-appearance.el +++ b/lisp/init-appearance.el @@ -5,18 +5,22 @@ ;; disable splash (setq inhibit-startup-message t) -;; hide menubar when not on os x +;; hide menu bar when not on os x (when (and (fboundp 'menu-bar-mode) (not (eq system-type 'darwin))) (menu-bar-mode -1)) -;; hide toolbar +;; hide tool bar (when (fboundp 'tool-bar-mode) (tool-bar-mode -1)) -;; hide scrollbar +;; hide scroll bar (when (fboundp 'scroll-bar-mode) (scroll-bar-mode -1)) +;; hide tab bar +(when (fboundp 'tab-bar-mode) + (tab-bar-mode -1)) + ;; disable dialogs (setq use-dialog-box nil) -- cgit v1.2.3