blob: 67bd1888187370756cfb5218927b1c00c637ff7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
(use-package page-break-lines :ensure t)
(use-package dashboard
:ensure t
:config
(dashboard-setup-startup-hook)
:custom
(dashboard-center-content t)
(dashboard-startup-banner 3)
(dashboard-items '((recents . 5)
(bookmarks . 5)
(projects . 5)
(agenda . 5)
))
(dashboard-icon-type 'nerd-icons)
(dashboard-set-heading-icons t)
(dashboard-set-file-icons t)
)
(provide 'rul-dashboard)
|