From 64c11c968cd7209f28425afe1258a6007e167961 Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Wed, 7 Jun 2023 12:02:02 +0200 Subject: [PATCH] fix: dashboard not loading --- config.org | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config.org b/config.org index 6a3bdc4..8136b50 100644 --- a/config.org +++ b/config.org @@ -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) :config (dashboard-setup-startup-hook) + (setq dashboard-center-content t) (setq dashboard-startup-banner "~/.emacs.d/img/dash_logo.png") (setq dashboard-items '((recents . 10) (bookmarks . 5) + (projects . 5) )) (setq dashboard-banner-logo-title "") + (setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*"))) ) #+END_SRC