summaryrefslogtreecommitdiffstats
path: root/lisp/init-appearance.el
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2022-02-17 17:39:34 +0100
committerMartin Polden <mpolden@mpolden.no>2022-02-17 17:39:34 +0100
commit7ac070ad815fb439468cb3d99fd4f4dc2c3b4b95 (patch)
tree4c7d6dd7424a1bbfd85b97e07fdc86b09149eef2 /lisp/init-appearance.el
parent0bc4e304502509fb021c38bc4bc03e125e5fb4f6 (diff)
Revert "appearance: Hide tab bar"
This reverts commit d5a9b610f6940cdad314d265f1720ffd524c8879.
Diffstat (limited to 'lisp/init-appearance.el')
-rw-r--r--lisp/init-appearance.el10
1 files changed, 3 insertions, 7 deletions
diff --git a/lisp/init-appearance.el b/lisp/init-appearance.el
index 84635b3..b5c24fb 100644
--- a/lisp/init-appearance.el
+++ b/lisp/init-appearance.el
@@ -5,22 +5,18 @@
;; disable splash
(setq inhibit-startup-message t)
-;; hide menu bar when not on os x
+;; hide menubar when not on os x
(when (and (fboundp 'menu-bar-mode) (not (eq system-type 'darwin)))
(menu-bar-mode -1))
-;; hide tool bar
+;; hide toolbar
(when (fboundp 'tool-bar-mode)
(tool-bar-mode -1))
-;; hide scroll bar
+;; hide scrollbar
(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)