From b3b15b844936f4080dcb8f06751705b9e88cb305 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 6 Jun 2026 07:54:25 -0500 Subject: 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. --- modules/duet-config.el | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 modules/duet-config.el (limited to 'modules') 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 -- cgit v1.2.3