show menu bar on MacOS, since it doesn't clutter the menu thanks to globalmenu

This commit is contained in:
Grigory Shipunov 2020-07-13 13:30:21 +02:00
parent fecbd06b30
commit a05abd8526
No known key found for this signature in database
GPG key ID: 77BB6C3E4771EE7C

View file

@ -25,7 +25,9 @@
(require 'use-package)
;; essential config
(menu-bar-mode -1)
(if (eq system-type 'darwin)
(menu-bar-mode 1) ; if on a mac, there's global menu anyway
(menu-bar-mode -1))
(tool-bar-mode -1)
(toggle-scroll-bar 1)
(global-display-line-numbers-mode)