docs: fixed code block

This commit is contained in:
Folke Lemaitre 2022-12-31 00:32:19 +01:00
parent 1de5c3d059
commit d1ed91d8c7
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 6 additions and 5 deletions

View File

@ -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
``` ```