Files
emacs-personal/modules/init-dashboard.el
Astounds 8676d00685
All checks were successful
git-sync-with-mirror / test (push) Successful in 3m6s
git-sync-with-mirror / git-sync (push) Successful in 13s
testing}
2026-02-28 00:11:06 -05:00

26 lines
739 B
EmacsLisp

;;; init-dashboard.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
(use-package dashboard
:ensure t
:init
(setq dashboard-banner-logo-title "Emacs personal"
dashboard-startup-banner 'logo
dashboard-center-content t
dashboard-show-shortcuts t
dashboard-set-heading-icons nil
dashboard-set-file-icons nil
dashboard-set-footer nil
dashboard-items '((recents . 5)
(bookmarks . 5)
(projects . 5)
(agenda . 5)
(registers . 5)))
:config
(dashboard-setup-startup-hook))
(provide 'init-dashboard)
;;; init-dashboard.el ends here