mirror of https://github.com/folke/lazy.nvim.git
docs: updated config
This commit is contained in:
parent
9f0a02fb0f
commit
57dfb05e2f
25
README.md
25
README.md
|
@ -28,14 +28,14 @@
|
||||||
<!-- toc:start -->
|
<!-- toc:start -->
|
||||||
|
|
||||||
- [⚡️ Requirements](#-requirements)
|
- [⚡️ Requirements](#-requirements)
|
||||||
- [📦 Installation](#-installation)
|
- [📦 Installation](#-installation)
|
||||||
- [🔌 Plugin Spec](#-plugin-spec)
|
- [🔌 Plugin Spec](#-plugin-spec)
|
||||||
- [⚙️ Configuration](#-configuration)
|
- [⚙️ Configuration](#-configuration)
|
||||||
- [🚀 Usage](#-usage)
|
- [🚀 Usage](#-usage)
|
||||||
- [📊 Profiler](#-profiler)
|
- [📊 Profiler](#-profiler)
|
||||||
- [🪲 Debug](#-debug)
|
- [🪲 Debug](#-debug)
|
||||||
- [📦 Differences with Packer](#-differences-with-packer)
|
- [📦 Differences with Packer](#-differences-with-packer)
|
||||||
- [📦 Other Neovim Plugin Managers in Lua](#-other-neovim-plugin-managers-in-lua)
|
- [📦 Other Neovim Plugin Managers in Lua](#-other-neovim-plugin-managers-in-lua)
|
||||||
|
|
||||||
<!-- toc:end -->
|
<!-- toc:end -->
|
||||||
|
|
||||||
|
@ -277,6 +277,15 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
-- lazy can generate helptags from the headings in markdown readme files,
|
||||||
|
-- so :help works even for plugins that don't have vim docs.
|
||||||
|
-- when the readme opens with :help it will be correctly displayed as markdown
|
||||||
|
readme = {
|
||||||
|
root = vim.fn.stdpath("state") .. "/lazy/readme",
|
||||||
|
files = { "README.md" },
|
||||||
|
-- only generate markdown helptags for plugins that dont have docs
|
||||||
|
skip_if_doc_exists = true,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue