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

15
lua/test-samurai/init.lua Normal file
View File

@@ -0,0 +1,15 @@
local config = require("test-samurai.config")
local core = require("test-samurai.core")
local M = {}
function M.setup(opts)
config.setup(opts or {})
core.setup()
end
function M.test_nearest()
core.run_nearest()
end
return M