mirror of
https://github.com/acedanger/dotfiles.git
synced 2025-12-05 22:30:13 -08:00
18 lines
348 B
Lua
18 lines
348 B
Lua
---@class Utils.Class
|
|
---@field config Utils.Class.Config
|
|
---@field icon Utils.Class.Icons
|
|
---@field layout Utils.Class.Layout
|
|
---@field logger Utils.Class.Logger
|
|
---@field picker Utils.Class.Picker
|
|
local M = {}
|
|
|
|
local mod = ...
|
|
setmetatable(M, {
|
|
__index = function(t, k)
|
|
t[k] = require(mod .. "." .. k)
|
|
return t[k]
|
|
end,
|
|
})
|
|
|
|
return M
|