chore: initial project setup

This commit is contained in:
Stevan Freeborn
2026-07-04 08:46:05 -05:00
commit 56bf4b7d11
10 changed files with 84 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
local M = {}
M.config = {
greeting = "Hello from my plugin"
}
function M.setup(opts)
M.config = vim.tbl_deep_extend("force", M.config, opts or {})
end
function M.say_hello()
print(M.config.greeting)
end
return M