mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-19 21:06:46 +00:00
feat(ui): added section with disabled plugins
This commit is contained in:
parent
05aec48968
commit
299ffdfd53
5 changed files with 15 additions and 3 deletions
|
@ -83,7 +83,7 @@ return {
|
|||
},
|
||||
{
|
||||
filter = function(plugin)
|
||||
return not plugin._.installed
|
||||
return not plugin._.installed and plugin._.kind ~= "disabled"
|
||||
end,
|
||||
title = "Not Installed",
|
||||
},
|
||||
|
@ -99,4 +99,10 @@ return {
|
|||
end,
|
||||
title = "Not Loaded",
|
||||
},
|
||||
{
|
||||
filter = function(plugin)
|
||||
return plugin._.kind == "disabled"
|
||||
end,
|
||||
title = "Disabled",
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue