pi config update

This commit is contained in:
Jonas H
2026-03-19 07:58:49 +01:00
parent a3c9183485
commit 871caa5adc
24 changed files with 6198 additions and 555 deletions

View File

@@ -0,0 +1,12 @@
/**
* Combined lsp-pi extension entry point.
* Loads both the hook extension (lsp.ts) and the tool extension (lsp-tool.ts).
*/
import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
import lspHook from "./lsp.js";
import lspTool from "./lsp-tool.js";
export default function (pi: ExtensionAPI) {
lspHook(pi);
lspTool(pi);
}