* Dashboard #+NAME: dashboard #+BEGIN_SRC emacs-lisp (use-package all-the-icons :straight t) (use-package dashboard :straight t :after (all-the-icons) :config (dashboard-setup-startup-hook) (setq dashboard-items '((recents . 5) (projects . 5) (agenda . 5)) dashboard-center-content t dashboard-set-heading-icons t dashboard-set-file-icons t dashboard-set-init-info t)) #+END_SRC