aboutsummaryrefslogtreecommitdiff
path: root/tests/test-init-defer-games.el
Commit message (Collapse)AuthorAgeFilesLines
* refactor: defer games-config behind autoloads (load-graph Phase 4)Craig Jennings2026-06-211-0/+38
init.el eagerly required games-config at startup just to configure two on-demand game packages. package.el already autoloads malyon and 2048-game, so the eager require bought nothing but the one setting the module adds (malyon-stories-directory). init.el now autoloads malyon and 2048-game to games-config instead of requiring it. The first game command loads the module, which configures then loads the package. Startup no longer touches games-config, and both the commands and the stories-directory setting still work. This is the first module of the Phase 4 low-risk batch.