updated secrets baseline config

This commit was merged in pull request #1.
This commit is contained in:
2026-06-06 15:54:15 -06:00
parent 5511da5a98
commit 5656c2d385
13 changed files with 451 additions and 141 deletions

View File

@@ -128,6 +128,16 @@ map("n", "<leader>cgpt", function()
vim.cmd("!go test -run=^$ -bench=. -trace trace.out ./...")
end, { desc = "Go trace profile" })
-- ─────────────────────────────────────────────────────────────────────────────
-- Zig: build / run / test
-- ─────────────────────────────────────────────────────────────────────────────
-- Mirrors the Go <leader>cg* layout: <leader>cz* (Code > Zig).
-- These are quick one-shot runs; for the mouse-driven task picker use <leader>or (OverseerRun),
-- which lists the zig: build/run/test templates from lua/overseer/template/user
map("n", "<leader>czb", "<cmd>!zig build<cr>", { desc = "Zig build" })
map("n", "<leader>czr", "<cmd>!zig build run<cr>", { desc = "Zig build run" })
map("n", "<leader>czt", "<cmd>!zig build test<cr>", { desc = "Zig build test" })
-- ─────────────────────────────────────────────────────────────────────────────
-- Overseer
-- ─────────────────────────────────────────────────────────────────────────────