feat(pick): add function for searching plugin_files

This commit is contained in:
2024-06-12 01:56:30 +08:00 committed by GitHub
parent 1c740ce3fd
commit e4174d01a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -69,4 +69,8 @@ function M.config_files()
return M.wrap("files", { cwd = vim.fn.stdpath("config") })
end
function M.plugin_files()
return M.wrap("files", { cwd = vim.fn.stdpath("data") .. "/lazy" })
end
return M