Files
dotfiles/nvim/m-housh/lua/plugins/which-key.lua

17 lines
248 B
Lua
Executable File

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