feat(ui): added section with disabled plugins

This commit is contained in:
Folke Lemaitre 2023-01-03 10:43:10 +01:00
parent 05aec48968
commit 299ffdfd53
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
5 changed files with 15 additions and 3 deletions

View file

@ -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",
},
}