2026-07-04 08:46:05 -05:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
|
|
M.config = {
|
2026-07-04 11:05:50 -05:00
|
|
|
greeting = "Hello from my plugin",
|
2026-07-04 08:46:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|