File tree 3 files changed +6
-0
lines changed
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -435,6 +435,7 @@ return {
435
435
-- so :help works even for plugins that don't have vim docs.
436
436
-- when the readme opens with :help it will be correctly displayed as markdown
437
437
readme = {
438
+ enabled = true ,
438
439
root = vim .fn .stdpath (" state" ) .. " /lazy/readme" ,
439
440
files = { " README.md" , " lua/**/README.md" },
440
441
-- only generate markdown helptags for plugins that dont have docs
Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ M.defaults = {
141
141
-- so :help works even for plugins that don't have vim docs.
142
142
-- when the readme opens with :help it will be correctly displayed as markdown
143
143
readme = {
144
+ enabled = true ,
144
145
root = vim .fn .stdpath (" state" ) .. " /lazy/readme" ,
145
146
files = { " README.md" , " lua/**/README.md" },
146
147
-- only generate markdown helptags for plugins that dont have docs
Original file line number Diff line number Diff line change @@ -41,6 +41,10 @@ function M.update()
41
41
if Config .plugins [" lazy.nvim" ] then
42
42
vim .cmd .helptags (Config .plugins [" lazy.nvim" ].dir .. " /doc" )
43
43
end
44
+ if Config .options .readme .enabled == false then
45
+ return
46
+ end
47
+
44
48
local docs = Config .options .readme .root .. " /doc"
45
49
vim .fn .mkdir (docs , " p" )
46
50
You can’t perform that action at this time.
0 commit comments