13 lines
353 B
Lua
13 lines
353 B
Lua
return {
|
|
{ -- Useful plugin to show you pending keybinds.
|
|
'folke/which-key.nvim',
|
|
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
|
|
opts = {
|
|
theme = 'helix',
|
|
-- delay between pressing a key and opening which-key (milliseconds)
|
|
-- this setting is independent of vim.opt.timeoutlen
|
|
delay = 0,
|
|
},
|
|
},
|
|
}
|