Prefer setopt to :custom from use-package
All checks were successful
/ Test config on 20 (push) Successful in 26s

The following does not provide completion for variables:

  (use-package thing :custom (thing-thing :ok))
This commit is contained in:
Maciej 2024-10-31 14:36:47 +02:00
parent ba82470bea
commit a68257ee41
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
24 changed files with 313 additions and 266 deletions

View file

@ -14,15 +14,15 @@
:commands dashboard-setup-startup-hook
:hook
((elpaca-after-init . dashboard-open))
:custom
((dashboard-footer-messages '("Happy coding!" "I showed you my source code, pls respond"))
(dashboard-startup-banner 'logo)
(dashboard-items '((recents . 5)
;; (bookmarks . 5)
;; (agenda . 5)
;; (registers . 5)
(projects . 5))))
:config (dashboard-setup-startup-hook))
:config
(setopt dashboard-footer-messages '("Happy coding!" "I showed you my source code, pls respond"))
(setopt dashboard-startup-banner 'logo)
(setopt dashboard-items '((recents . 5)
;; (bookmarks . 5)
;; (agenda . 5)
;; (registers . 5)
(projects . 5)))
(dashboard-setup-startup-hook))
(provide 'icejam-dashboard)
;;; icejam-dashboard.el ends here