aboutsummaryrefslogtreecommitdiffstats
path: root/_mbsetupuser
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-07-21 18:10:27 -0700
committerGravatar Tom Willemse2026-08-26 23:04:25 -0700
commitc871a8b4d57db5831e8ad6c5c0e3ad74b5362cc3 (patch)
treeaa471e24c5cee25ac788942ae8ae49b3a3c31931 /_mbsetupuser
parent54e5b04854be58a35bf2ee02529fd43b8e9107a5 (diff)
downloadnew-dotfiles-c871a8b4d57db5831e8ad6c5c0e3ad74b5362cc3.tar.gz
new-dotfiles-c871a8b4d57db5831e8ad6c5c0e3ad74b5362cc3.zip
emacs: Display the menu bar on macos
It shows up in the global menu bar, removing it doesn't get me anything, keeping it doesn't really help me either, but it looks a little nicer than having an empty bar.
Diffstat (limited to '_mbsetupuser')
-rw-r--r--_mbsetupuser/.emacs.d/init.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/_mbsetupuser/.emacs.d/init.el b/_mbsetupuser/.emacs.d/init.el
index 70f39eb..c1b869e 100644
--- a/_mbsetupuser/.emacs.d/init.el
+++ b/_mbsetupuser/.emacs.d/init.el
@@ -38,6 +38,11 @@
:config
(ace-window-posframe-mode))
+(use-package menu-bar
+ :if (not (eq window-system 'ns))
+ :init
+ (menu-bar-mode -1))
+
(use-package exec-path-from-shell
:if (eq system-type 'darwin)
:ensure t