Skip to content

Commit c228908

Browse files
committed
fix(health): don't show warning on module=false
1 parent b68f94b commit c228908

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ require("lazy").setup({
100100
| **cmd** | `string?` or `string[]` | Lazy-load on command |
101101
| **ft** | `string?` or `string[]` | Lazy-load on filetype |
102102
| **keys** | `string?` or `string[]` | Lazy-load on key mapping |
103+
| **module** | `false?` | Do not automatically load this lua module when it's required somewhere |
103104

104105
### Lazy Loading
105106

lua/lazy/health.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ function M.check()
3737
"tag",
3838
"commit",
3939
"version",
40+
"module",
4041
"pin",
4142
"cmd",
4243
"event",
@@ -48,7 +49,9 @@ function M.check()
4849
for _, plugin in pairs(Config.plugins) do
4950
for key in pairs(plugin) do
5051
if not vim.tbl_contains(valid, key) then
51-
vim.health.report_warn("{" .. plugin.name .. "}: unknown key <" .. key .. ">")
52+
if key ~= "module" or type(plugin.module) ~= "boolean" then
53+
vim.health.report_warn("{" .. plugin.name .. "}: unknown key <" .. key .. ">")
54+
end
5255
end
5356
end
5457
end

0 commit comments

Comments
 (0)