refactor: simplify startup profiles and ignore local tooling configs

This commit is contained in:
2026-05-30 15:01:30 +08:00
parent 5cba0307a3
commit 94699474c7
36 changed files with 604 additions and 1166 deletions
+9
View File
@@ -0,0 +1,9 @@
local M = {}
function M.setup()
vim.keymap.set("n", "<leader>w", function()
require("nvim-window").pick()
end, { desc = "Jump to window" })
end
return M