aboutsummaryrefslogtreecommitdiffstats
path: root/_mbsetupuser
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-07-21 18:10:27 -0700
committerGravatar Tom Willemse2026-07-21 18:16:32 -0700
commitac8e5f45ddb199bcdf2e5b57d726ef5a8da2b652 (patch)
tree5bfe52141cf097ec80545d9cb0e9ae44eefd33fb /_mbsetupuser
parent2fca20eeed9f22e85d67f9e442e0341753b123c1 (diff)
downloadnew-dotfiles-ac8e5f45ddb199bcdf2e5b57d726ef5a8da2b652.tar.gz
new-dotfiles-ac8e5f45ddb199bcdf2e5b57d726ef5a8da2b652.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