mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 10:36:12 +01:00
21 lines
435 B
Org Mode
21 lines
435 B
Org Mode
|
* 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
|