feat: add config system

This commit is contained in:
2026-07-14 18:26:45 +02:00
parent 6d1fd15b9b
commit 9959f59f57
2 changed files with 18 additions and 4 deletions
+2 -4
View File
@@ -1,13 +1,11 @@
local M = {}
local _opts = {}
local config = require('chai.config')
--- initializes chai.nvim plugin
---@param opts any plugin options
function M.setup(opts)
_opts = opts
print("Hello world")
config.setup(opts)
end
return M