diff --git a/README.md b/README.md index 93f2385..fb80912 100644 --- a/README.md +++ b/README.md @@ -322,6 +322,8 @@ return { dev = { -- directory where you store your local plugin projects path = "~/projects", + -- you may also include a list of paths to also check. + extra_paths = nil, ---@type string[] plugins that match these patterns will use your local versions instead of being fetched from GitHub patterns = {}, -- For example {"folke"} fallback = false, -- Fallback to git when local plugin doesn't exist diff --git a/lua/lazy/core/config.lua b/lua/lazy/core/config.lua index 14c6c92..ab67da7 100644 --- a/lua/lazy/core/config.lua +++ b/lua/lazy/core/config.lua @@ -32,6 +32,7 @@ M.defaults = { dev = { -- directory where you store your local plugin projects path = "~/projects", + -- you may include a list of local paths to also check. extra_paths = nil, ---@type string[] plugins that match these patterns will use your local versions instead of being fetched from GitHub patterns = {}, -- For example {"folke"}