flocon/dot_config/nvim/lua/plugins/which-key.lua
Anthony Rodriguez 73261dcdc3 Update .config/nvim/lua/plugins/lsp.lua
Add .config/nvim/lua/plugins/which-key.lua
2024-08-12 16:07:43 +02:00

18 lines
360 B
Lua

return {
"folke/which-key.nvim",
event = "VeryLazy",
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
},
keys = {
{
"<leader>?",
function()
require("which-key").show({ global = false })
end,
desc = "Buffer Local Keymaps (which-key)",
},
},
}