aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/mason.lua12
1 files changed, 0 insertions, 12 deletions
diff --git a/lua/mason.lua b/lua/mason.lua
index 82da0570..f88a0db4 100644
--- a/lua/mason.lua
+++ b/lua/mason.lua
@@ -15,16 +15,4 @@ function M.setup(config)
require "mason.command-api"
end
----@param pkg_path string
-local function lazy_require(pkg_path)
- return setmetatable({}, {
- __index = function(_, k)
- return require(pkg_path)[k]
- end,
- __call = function(_, ...)
- return require(pkg_path)(...)
- end,
- })
-end
-
return M