mirror of
https://github.com/sxyazi/yazi.git
synced 2024-12-25 17:54:57 +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 = {}
|