diff options
| author | Craig Jennings <c@cjennings.net> | 2025-11-03 01:10:55 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-11-03 01:10:55 -0600 |
| commit | 42587f053e1037240fc112137bda5fb937e0e636 (patch) | |
| tree | 9110e59a68d58a8bac90bc3fb92985a2552d6b46 /modules/dashboard-config.el | |
| parent | 1b68b42839d3ec4e05401f73e812c4211d3dcc29 (diff) | |
config: Optimize dashboard loading and reduce bookmark count
Changes:
- Changed dashboard to :demand t (load immediately instead of defer)
- Reduced bookmark display from 15 to 10 items
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'modules/dashboard-config.el')
| -rw-r--r-- | modules/dashboard-config.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/dashboard-config.el b/modules/dashboard-config.el index 44e87d5a..3f7e273f 100644 --- a/modules/dashboard-config.el +++ b/modules/dashboard-config.el @@ -64,7 +64,7 @@ ;; a useful startup screen for Emacs (use-package dashboard - :defer t + :demand t :hook (emacs-startup . cj/dashboard-only) :bind ("<f1>" . cj/dashboard-only) :custom @@ -75,7 +75,7 @@ (bookmarks . dashboard-insert-bookmarks))) (dashboard-items '((projects . 5) - (bookmarks . 15))) + (bookmarks . 10))) (dashboard-startupify-list '(dashboard-insert-banner |
