mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-18 14:21:32 +03:00
10 lines
216 B
Lua
10 lines
216 B
Lua
package.path = BOOT.plugin_dir .. "/?.yazi/init.lua;" .. package.path
|
|
|
|
local _require = require
|
|
require = function(name)
|
|
YAZI_PLUGIN_NAME, YAZI_SYNC_CALLS = name, 0
|
|
return _require(name)
|
|
end
|
|
|
|
YAZI_SYNC_BLOCKS = {}
|