From 830913bd2538bdfe0bf80e5166c9f04c7d95d2e2 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Sun, 25 Aug 2019 14:27:30 -0400 Subject: [PATCH] Disable the menu bar by default --- emacs/init.org | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/emacs/init.org b/emacs/init.org index 610db65..bc93cd7 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -989,6 +989,11 @@ Get rid of the janky buttons: (tool-bar-mode -1) #+END_SRC +And the menu bar: +#+BEGIN_SRC emacs-lisp + (menu-bar-mode -1) +#+END_SRC + And the ugly scroll bars: #+BEGIN_SRC emacs-lisp (set-scroll-bar-mode nil)