mirror of https://github.com/folke/lazy.nvim.git
chore(build): auto-generate vimdoc
This commit is contained in:
parent
d1ed91d8c7
commit
d02a10d832
|
@ -739,7 +739,13 @@ PACKER.NVIM <HTTPS://GITHUB.COM/WBTHOMASON/PACKER.NVIM> ~
|
||||||
- `module` is auto-loaded. No need to specify
|
- `module` is auto-loaded. No need to specify
|
||||||
- `keys` spec is |lazy.nvim-different|
|
- `keys` spec is |lazy.nvim-different|
|
||||||
- `rtp` can be accomplished with:
|
- `rtp` can be accomplished with:
|
||||||
`lua config = function(plugin) vim.opt.rtp:append(plugin.dir .. "/rtpPath") end`
|
|
||||||
|
|
||||||
|
>lua
|
||||||
|
config = function(plugin)
|
||||||
|
vim.opt.rtp:append(plugin.dir .. "/custom-rtp")
|
||||||
|
end
|
||||||
|
<
|
||||||
|
|
||||||
|
|
||||||
With packer `wants`, `requires` and `after` can be used to manage dependencies.
|
With packer `wants`, `requires` and `after` can be used to manage dependencies.
|
||||||
|
|
Loading…
Reference in New Issue