awesomerc/.busted

14 lines
295 B
Plaintext
Raw Normal View History

2024-11-03 01:59:30 +01:00
if os.getenv "LOCAL_LUA_DEBUGGER_VSCODE" == "1" then
require("lldebugger").start()
end
local function lua_module_paths(module_base_path)
return (module_base_path .. "/?.lua;") .. (module_base_path .. "/?/init.lua;")
end
return {
_all = {
lpath = lua_module_paths "src",
},
}