Fix the dashboard startup

This commit is contained in:
Jeremy Dormitzer 2020-01-03 10:15:49 -05:00
parent fec16dcc97
commit 1d8db87255

View File

@ -2222,6 +2222,15 @@ Instead of the *GNU Emacs* buffer on startup, display a cool dashboard:
(dashboard-setup-startup-hook))
#+END_SRC
For some reason Emacs is starting up with the dashboard and the *scratch* buffer open in a split configuration. Not sure why, but let's put a stop to that...
#+BEGIN_SRC emacs-lisp
(add-hook
'after-init-hook
(lambda ()
(switch-to-buffer "*dashboard*")
(delete-other-windows)))
#+END_SRC
* Mu4e
Because email in Emacs is badass. My mail set up is based on [[http://stevelosh.com/blog/2012/10/the-homely-mutt/][this mutt setup]] and [[https://notanumber.io/2016-10-03/better-email-with-mu4e/][this mu4e setup]].
#+BEGIN_SRC emacs-lisp