mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-18 20:36:45 +00:00
perf: added profiling for sourcing of runtime files
This commit is contained in:
parent
08d081f21d
commit
be509c01f9
4 changed files with 15 additions and 6 deletions
|
@ -134,7 +134,9 @@ function M.source_runtime(...)
|
|||
Util.walk(dir, function(path, _, t)
|
||||
local ext = path:sub(-3)
|
||||
if t == "file" and (ext == "lua" or ext == "vim") then
|
||||
Util.track({ runtime = path })
|
||||
vim.cmd("silent source " .. path)
|
||||
Util.track()
|
||||
end
|
||||
end)
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue