Corrected packer syntax according to comment in #176
This commit is contained in:
parent
32744c3f66
commit
876248d4bf
|
@ -47,12 +47,12 @@ The following is an example of a `plugins.lua` module (located at `$HOME/.config
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
return function(use)
|
return function(use)
|
||||||
use({
|
use{
|
||||||
"folke/which-key.nvim",
|
"folke/which-key.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("which-key").setup({})
|
require("which-key").setup()
|
||||||
end
|
end
|
||||||
})
|
}
|
||||||
end
|
end
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue