mirror of https://github.com/folke/lazy.nvim.git
chore(build): auto-generate vimdoc
This commit is contained in:
parent
36cb7ea597
commit
ca430184b3
|
@ -15,7 +15,7 @@ Table of Contents *lazy.nvim-table-of-contents*
|
||||||
- 🪲 Debug |lazy.nvim-🪲-debug|
|
- 🪲 Debug |lazy.nvim-🪲-debug|
|
||||||
- Startup Sequence |lazy.nvim-startup-sequence|
|
- Startup Sequence |lazy.nvim-startup-sequence|
|
||||||
- Structuring Your Plugins |lazy.nvim-structuring-your-plugins|
|
- Structuring Your Plugins |lazy.nvim-structuring-your-plugins|
|
||||||
- Differences with Packer |lazy.nvim-differences-with-packer|
|
- Migration Guide |lazy.nvim-migration-guide|
|
||||||
- Uninstalling |lazy.nvim-uninstalling|
|
- Uninstalling |lazy.nvim-uninstalling|
|
||||||
- Other Neovim Plugin Managers in Lua|lazy.nvim-other-neovim-plugin-managers-in-lua|
|
- Other Neovim Plugin Managers in Lua|lazy.nvim-other-neovim-plugin-managers-in-lua|
|
||||||
|
|
||||||
|
@ -508,19 +508,28 @@ Example:
|
||||||
- any lua file in `~/.config/nvim/lua/plugins/.lua` will be automatically merged in the main plugin spec
|
- any lua file in `~/.config/nvim/lua/plugins/.lua` will be automatically merged in the main plugin spec
|
||||||
|
|
||||||
|
|
||||||
DIFFERENCES WITH PACKER *lazy.nvim-differences-with-packer*
|
MIGRATION GUIDE *lazy.nvim-migration-guide*
|
||||||
|
|
||||||
|
PACKER.NVIM <HTTPS://GITHUB.COM/WBTHOMASON/PACKER.NVIM> ~
|
||||||
|
|
||||||
|
|
||||||
- **Plugin Spec**:
|
- `setup` `init`
|
||||||
- `setup` => `init`
|
- `requires` `dependencies`
|
||||||
- `requires` => `dependencies`
|
- `as` `name`
|
||||||
- `as` => `name`
|
- `opt` `lazy`
|
||||||
- `opt` => `lazy`
|
- `run` `build`
|
||||||
- `run` => `build`
|
- `lock` `pin`
|
||||||
- `lock` => `pin`
|
|
||||||
- `module` is auto-loaded. No need to specify
|
- `module` is auto-loaded. No need to specify
|
||||||
|
|
||||||
|
|
||||||
|
PAQ-NVIM <HTTPS://GITHUB.COM/SAVQ/PAQ-NVIM> ~
|
||||||
|
|
||||||
|
|
||||||
|
- `as` `name`
|
||||||
|
- `opt` `lazy`
|
||||||
|
- `run` `build`
|
||||||
|
|
||||||
|
|
||||||
UNINSTALLING *lazy.nvim-uninstalling*
|
UNINSTALLING *lazy.nvim-uninstalling*
|
||||||
|
|
||||||
To uninstall **lazy.nvim**, you need to remove the following files and
|
To uninstall **lazy.nvim**, you need to remove the following files and
|
||||||
|
|
Loading…
Reference in New Issue