chore: initial commit

This commit is contained in:
2026-07-14 18:01:51 +02:00
commit 6d1fd15b9b
9 changed files with 60 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
local M = {}
local _opts = {}
--- initializes chai.nvim plugin
---@param opts any plugin options
function M.setup(opts)
_opts = opts
print("Hello world")
end
return M