Dashboard

This commit is contained in:
Tobias Ostner 2023-09-10 11:56:03 +02:00
parent 66927e9ebf
commit 7e9bf93153
2 changed files with 19 additions and 0 deletions

View file

@ -125,6 +125,25 @@
(use-package dash)
(use-package dashboard
:if window-system
:config
(dashboard-setup-startup-hook)
:init
(setq dashboard-center-content t
dashboard-banner-logo-title nil
dashboard-set-footer nil
dashboard-show-shortcuts nil
dashboard-startup-banner (expand-file-name
"resources/emacs.png"
user-emacs-directory)
dashboard-items '((recents . 8)
(agenda . 8))
dashboard-display-icons-p t
dashboard-icon-type 'nerd-icons
dashboard-set-heading-icons t
dashboard-set-file-icons t))
(use-package denote
:bind (("C-c n n" . denote)
("C-c n l" . denote-link)