initialize with first MVP

This commit is contained in:
2025-12-23 14:10:06 +01:00
commit 4de8921a42
14 changed files with 733 additions and 0 deletions

10
plugin/test-samurai.lua Normal file
View File

@@ -0,0 +1,10 @@
if vim.g.loaded_test_samurai then
return
end
vim.g.loaded_test_samurai = true
vim.api.nvim_create_user_command("TestNearest", function()
require("test-samurai").test_nearest()
end, {
desc = "Run nearest test with test-samurai",
})