1
0
neovim_config/lua/barink/plugins/which-key.lua

16 lines
317 B
Lua
Raw Normal View History

return {
"folke/which-key.nvim",
event = "VeryLazy",
opts = {
},
keys = {
{
"<leader>?",
function()
require("which-key").show({global = false})
end,
desc = "Buffer Local Keymaps (which-key)",
}
}
}