mirror of
https://github.com/zebrajr/dotfiles.git
synced 2025-12-06 00:20:05 +01:00
23 lines
420 B
Lua
23 lines
420 B
Lua
return {
|
|
"folke/which-key.nvim",
|
|
lazy = true,
|
|
event = 'VimEnter',
|
|
|
|
opts = {
|
|
preset = 'modern',
|
|
delay = '300',
|
|
icons = {
|
|
mappings = false,
|
|
},
|
|
},
|
|
keys = {
|
|
{
|
|
'<leader>',
|
|
function ()
|
|
require('which-key').show({ global = false })
|
|
end,
|
|
desc = 'Buffer Local Keymaps',
|
|
},
|
|
},
|
|
}
|