refactor(plugin): remove redundant init.lua wrapper

This commit is contained in:
2026-02-24 20:21:09 -08:00
parent d10fda7136
commit 21c76c5097
2 changed files with 1 additions and 8 deletions

View File

@@ -1,7 +0,0 @@
local M = {}
function M.init()
require("bootstrap").init()
end
return M

View File

@@ -6,4 +6,4 @@ if not package.path:find(module_patterns, 1, true) then
package.path = module_patterns .. package.path
end
require("init").init()
require("bootstrap").init()