mirror of https://github.com/folke/lazy.nvim.git
docs: fixed code block
This commit is contained in:
parent
1de5c3d059
commit
d1ed91d8c7
|
@ -675,9 +675,10 @@ For a real-life example, you can check my personal dots:
|
||||||
- `module` is auto-loaded. No need to specify
|
- `module` is auto-loaded. No need to specify
|
||||||
- `keys` spec is [different](#%EF%B8%8F-lazy-key-mappings)
|
- `keys` spec is [different](#%EF%B8%8F-lazy-key-mappings)
|
||||||
- `rtp` can be accomplished with:
|
- `rtp` can be accomplished with:
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
config = function(plugin)
|
config = function(plugin)
|
||||||
vim.opt.rtp:append(plugin.dir .. "/rtpPath")
|
vim.opt.rtp:append(plugin.dir .. "/custom-rtp")
|
||||||
end
|
end
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue