diff options
| author | Craig Jennings <c@cjennings.net> | 2026-06-06 07:54:25 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-06-06 07:54:25 -0500 |
| commit | e3c3fc8abd5e9e6552e9038c45ee05d220c6e18f (patch) | |
| tree | 248c90901a2badaee0b568279bf185902a20fff3 | |
| parent | 348c430f3079d78eb6287555247bf6036f0e294c (diff) | |
| download | dotemacs-e3c3fc8abd5e9e6552e9038c45ee05d220c6e18f.tar.gz dotemacs-e3c3fc8abd5e9e6552e9038c45ee05d220c6e18f.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.
| -rw-r--r-- | modules/duet-config.el | 19 |
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 |
