summaryrefslogtreecommitdiffstats
path: root/lisp/init-appearance.el
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2022-02-03 13:54:43 +0100
committerMartin Polden <mpolden@mpolden.no>2022-02-03 13:54:43 +0100
commitd5a9b610f6940cdad314d265f1720ffd524c8879 (patch)
tree99969d9a754b7bead67d17abc7a5d036db7a8f95 /lisp/init-appearance.el
parentf10a53d8ea35ea12337a11c32f89c2f4524bce2a (diff)
appearance: Hide tab bar
Diffstat (limited to 'lisp/init-appearance.el')
-rw-r--r--lisp/init-appearance.el10
1 files changed, 7 insertions, 3 deletions
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)