26 lines
739 B
EmacsLisp
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
|