mirror of
https://github.com/acedanger/dotfiles.git
synced 2025-12-05 22:30:13 -08:00
copied profile
This commit is contained in:
17
wezterm/.config/utils/class/init.lua
Normal file
17
wezterm/.config/utils/class/init.lua
Normal file
@@ -0,0 +1,17 @@
|
||||
---@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
|
||||
Reference in New Issue
Block a user