Added dashboard.el

This commit is contained in:
Alexander Rosenberg 2023-09-29 23:13:35 -07:00
parent 8ce400137a
commit 31589bab6e
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

11
init.el
View File

@ -559,4 +559,15 @@ visual states."
(setq doom-modeline-support-imenu t) (setq doom-modeline-support-imenu t)
(doom-modeline-mode 1)) (doom-modeline-mode 1))
;; dashboard.el
(use-package dashboard
:config
(dashboard-setup-startup-hook)
(setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*"))
dashboard-display-icons-p t
dashboard-icon-type 'nerd-icons
dashboard-set-file-icons t
dashboard-items '((recents . 5)
(bookmarks . 5))))
;;; init.el ends here ;;; init.el ends here