chore(build): auto-generate vimdoc

This commit is contained in:
github-actions[bot] 2022-12-30 23:33:10 +00:00
parent d1ed91d8c7
commit d02a10d832
1 changed files with 7 additions and 1 deletions

View File

@ -739,7 +739,13 @@ PACKER.NVIM <HTTPS://GITHUB.COM/WBTHOMASON/PACKER.NVIM> ~
- `module` is auto-loaded. No need to specify
- `keys` spec is |lazy.nvim-different|
- `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.