Remove early-init as emacs-mac doesn't seem to support it

This commit is contained in:
Jeremy Dormitzer 2020-02-12 14:24:00 -05:00
parent 2f1cb591d5
commit d65471a0e8

View File

@ -2016,17 +2016,17 @@ Quickly find stuff in Org files:
* Mode line
* UI
Get rid of the janky buttons:
#+BEGIN_SRC emacs-lisp :tangle ~/.emacs.d/early-init.el
#+BEGIN_SRC emacs-lisp
(tool-bar-mode -1)
#+END_SRC
And the menu bar:
#+BEGIN_SRC emacs-lisp :tangle ~/.emacs.d/early-init.el
#+BEGIN_SRC emacs-lisp
(menu-bar-mode -1)
#+END_SRC
And the ugly scroll bars:
#+BEGIN_SRC emacs-lisp :tangle ~/.emacs.d/early-init.el
#+BEGIN_SRC emacs-lisp
(set-scroll-bar-mode nil)
#+END_SRC