diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2017-01-03 16:15:58 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2017-01-03 16:15:58 -0800 |
commit | 5f56290072af1f2874e38af03cd4386d2a9fb6b1 (patch) | |
tree | b60660aea933470f0952a3f2c2b46db5bb7818fa | |
parent | [emacs] Slightly bigger font and no bell. (diff) | |
download | emacs.d-5f56290072af1f2874e38af03cd4386d2a9fb6b1.tar.gz |
[Emacs] Disable menu bar.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/lib/settings.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs.d/lib/settings.el b/emacs.d/lib/settings.el index 65c39d1..f952d05 100644 --- a/emacs.d/lib/settings.el +++ b/emacs.d/lib/settings.el @@ -2,7 +2,7 @@ (setq inhibit-startup-screen t) ;; disable tool bar and the scroll bar -(dolist (mode '(tool-bar-mode scroll-bar-mode)) +(dolist (mode '(tool-bar-mode scroll-bar-mode menu-bar-mode)) (when (fboundp mode) (funcall mode -1))) ;; auto close bracket, parenthesis insertion |