From 188aeae770af966c7a64d8185434373592123ede Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 11 Jul 2026 09:42:10 -0500 Subject: feat: add takuzu-config and wire it into init Wire the standalone Takuzu (Binairo) game with use-package and require it at startup so M-x takuzu is available. The package lives in its own repo and loads by :load-path. Switch to :vc once it is published. --- modules/takuzu-config.el | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 modules/takuzu-config.el (limited to 'modules') diff --git a/modules/takuzu-config.el b/modules/takuzu-config.el new file mode 100644 index 00000000..470aaec8 --- /dev/null +++ b/modules/takuzu-config.el @@ -0,0 +1,17 @@ +;;; takuzu-config.el --- Takuzu (Binairo) game configuration -*- lexical-binding: t -*- + +;;; Commentary: +;; Wire the standalone takuzu game package (developed at ~/code/takuzu). +;; Play with M-x takuzu. Switch to :vc once it is published on GitHub. + +;;; Code: + +(use-package takuzu + :load-path "~/code/takuzu" + :commands (takuzu) + :custom + (takuzu-default-size 6) + (takuzu-default-difficulty 'easy)) + +(provide 'takuzu-config) +;;; takuzu-config.el ends here -- cgit v1.2.3