Corrected packer syntax according to comment in #176

This commit is contained in:
Jonas Bygdén 2023-02-15 12:41:36 +01:00
parent 32744c3f66
commit 876248d4bf
1 changed files with 3 additions and 3 deletions

View File

@ -47,12 +47,12 @@ The following is an example of a `plugins.lua` module (located at `$HOME/.config
```lua
return function(use)
use({
use{
"folke/which-key.nvim",
config = function()
require("which-key").setup({})
require("which-key").setup()
end
})
}
end
```