Activate the menu bar on macOS

Since it doesn't take any extra space on macOS, there is no reason to
deactivate it.
This commit is contained in:
Dimitri Lozeve 2024-08-07 22:06:05 +02:00
parent 7e98d8aec4
commit fed1c9c2c4

View file

@ -64,7 +64,8 @@
(setq inhibit-startup-screen t) (setq inhibit-startup-screen t)
(tool-bar-mode -1) (tool-bar-mode -1)
(scroll-bar-mode -1) (scroll-bar-mode -1)
(menu-bar-mode -1) (unless (eq window-system 'ns)
(menu-bar-mode -1))
(setq visible-bell 1) (setq visible-bell 1)
(blink-cursor-mode 0) (blink-cursor-mode 0)
(show-paren-mode 1) (show-paren-mode 1)