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
commitb3b15b844936f4080dcb8f06751705b9e88cb305 (patch)
treea1e254a1cd0c5719e866d444d0c467553c1d5cdb /modules
parentecd97375829e5e8d395410c663947491e37e2c49 (diff)
downloaddotemacs-b3b15b844936f4080dcb8f06751705b9e88cb305.tar.gz
dotemacs-b3b15b844936f4080dcb8f06751705b9e88cb305.zip
chore: spin Duet out into its own project; add config stubHEADmain
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 00000000..2dc7ad2e
--- /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