File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ require("lazy").setup({
100
100
| ** cmd** | ` string? ` or ` string[] ` | Lazy-load on command |
101
101
| ** ft** | ` string? ` or ` string[] ` | Lazy-load on filetype |
102
102
| ** keys** | ` string? ` or ` string[] ` | Lazy-load on key mapping |
103
+ | ** module** | ` false? ` | Do not automatically load this lua module when it's required somewhere |
103
104
104
105
### Lazy Loading
105
106
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ function M.check()
37
37
" tag" ,
38
38
" commit" ,
39
39
" version" ,
40
+ " module" ,
40
41
" pin" ,
41
42
" cmd" ,
42
43
" event" ,
@@ -48,7 +49,9 @@ function M.check()
48
49
for _ , plugin in pairs (Config .plugins ) do
49
50
for key in pairs (plugin ) do
50
51
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
52
55
end
53
56
end
54
57
end
You can’t perform that action at this time.
0 commit comments