aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-06-06 07:54:25 -0500
committerCraig Jennings <c@cjennings.net>2026-06-06 07:54:25 -0500
commit4712fbd1483d0d5f9c3c9d6911ecf9c6ac319f7b (patch)
treef53bb1dab781d21a92caae4b9db911a962042e0a /modules
parentac5ac0bfda92ebe6264a0a88db1230236ba0aef0 (diff)
downloaddotemacs-4712fbd1483d0d5f9c3c9d6911ecf9c6ac319f7b.tar.gz
dotemacs-4712fbd1483d0d5f9c3c9d6911ecf9c6ac319f7b.zip
chore: spin Duet out into its own project; add config stub
The Duet design work graduated into a standalone package, so its task moved out of this todo. modules/duet-config.el is a use-package stub for it, inert until wired into init.el. Daily task-review also synced three ghostel follow-up priorities to their parent.
Diffstat (limited to 'modules')
-rw-r--r--modules/duet-config.el19
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/duet-config.el b/modules/duet-config.el
new file mode 100644
index 000000000..2dc7ad2e3
--- /dev/null
+++ b/modules/duet-config.el
@@ -0,0 +1,19 @@
+;;; duet-config.el --- DUET dual-pane commander configuration -*- lexical-binding: t -*-
+
+;;; Commentary:
+;; Personal configuration glue for the DUET package, developed locally at
+;; ~/code/duet. Keybindings, defcustom values, and connection storage live
+;; here; the package itself stays free of personal opinions.
+;;
+;; Not yet required from init.el — DUET is a pre-alpha skeleton. Wire it in
+;; once Stage 1 provides usable commands.
+
+;;; Code:
+
+(use-package duet
+ :load-path "~/code/duet"
+ :ensure nil
+ :commands (duet))
+
+(provide 'duet-config)
+;;; duet-config.el ends here