14 lines
255 B
Lua
14 lines
255 B
Lua
return {
|
|
"folke/which-key.nvim",
|
|
config = function(plugin, opts)
|
|
plugin.default_config(opts)
|
|
local wk = require "which-key"
|
|
wk.register({
|
|
b = { name = "Buffer" },
|
|
}, {
|
|
mode = "n",
|
|
prefix = "<leader>",
|
|
})
|
|
end,
|
|
}
|