aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-07-11 09:42:10 -0500
committerCraig Jennings <c@cjennings.net>2026-07-11 09:42:10 -0500
commit188aeae770af966c7a64d8185434373592123ede (patch)
treeccf9b31a3cd39fb9924db763da5e2be5413cc982 /modules
parent99da5e640310a12b67a63764f430fca3fa6de9e1 (diff)
downloaddotemacs-188aeae770af966c7a64d8185434373592123ede.tar.gz
dotemacs-188aeae770af966c7a64d8185434373592123ede.zip
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.
Diffstat (limited to 'modules')
-rw-r--r--modules/takuzu-config.el17
1 files changed, 17 insertions, 0 deletions
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