fix: dashboard not loading

This commit is contained in:
Laurens Miers 2023-06-07 12:02:02 +02:00
parent 4aed3d38dd
commit 64c11c968c

View file

@ -647,11 +647,14 @@ Since I like it to give me a list of recent files, we need to enable =recentf-mo
(recentf-mode 1) (recentf-mode 1)
:config :config
(dashboard-setup-startup-hook) (dashboard-setup-startup-hook)
(setq dashboard-center-content t)
(setq dashboard-startup-banner "~/.emacs.d/img/dash_logo.png") (setq dashboard-startup-banner "~/.emacs.d/img/dash_logo.png")
(setq dashboard-items '((recents . 10) (setq dashboard-items '((recents . 10)
(bookmarks . 5) (bookmarks . 5)
(projects . 5)
)) ))
(setq dashboard-banner-logo-title "") (setq dashboard-banner-logo-title "")
(setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*")))
) )
#+END_SRC #+END_SRC