show menu bar on MacOS, since it doesn't clutter the menu thanks to globalmenu
This commit is contained in:
parent
fecbd06b30
commit
a05abd8526
1 changed files with 3 additions and 1 deletions
4
init.el
4
init.el
|
@ -25,7 +25,9 @@
|
||||||
(require 'use-package)
|
(require 'use-package)
|
||||||
|
|
||||||
;; essential config
|
;; 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)
|
(tool-bar-mode -1)
|
||||||
(toggle-scroll-bar 1)
|
(toggle-scroll-bar 1)
|
||||||
(global-display-line-numbers-mode)
|
(global-display-line-numbers-mode)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue