astronvim/plugins/which-key.lua

14 lines
255 B
Lua
Raw Normal View History

2023-02-03 16:08:09 +01:00
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,
}