mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-03 06:36:34 +00:00
fix(plugin): don't check if dir exists for virtual plugins
This commit is contained in:
parent
b08dba8107
commit
656cf43093
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ M.docs = {
|
|||
|
||||
M.exists = {
|
||||
skip = function(plugin)
|
||||
return not plugin._.is_local
|
||||
return not plugin._.is_local or plugin.virtual
|
||||
end,
|
||||
run = function(self)
|
||||
if not Util.file_exists(self.plugin.dir) then
|
||||
|
|
Loading…
Add table
Reference in a new issue