summaryrefslogtreecommitdiffstats
path: root/lisp/init-appearance.el
diff options
context:
space:
mode:
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)