mirror of
https://github.com/acedanger/dotfiles.git
synced 2025-12-05 22:30:13 -08:00
copied profile
This commit is contained in:
15
wezterm/.config/utils/init.lua
Normal file
15
wezterm/.config/utils/init.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
---@class Utils
|
||||
---@field class Utils.Class
|
||||
---@field fn Utils.Fn
|
||||
---@field gpu GpuAdapters
|
||||
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