We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fffad3 commit 392fa68Copy full SHA for 392fa68
init.lua
@@ -49,7 +49,6 @@ vim.opt.signcolumn = 'yes'
49
vim.opt.updatetime = 250
50
51
-- Decrease mapped sequence wait time
52
--- Displays which-key popup sooner
53
vim.opt.timeoutlen = 300
54
55
-- Configure how new splits should be opened
@@ -231,6 +230,9 @@ require('lazy').setup({
231
230
'folke/which-key.nvim',
232
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
233
opts = {
+ -- delay between pressing a key and opening which-key (milliseconds)
234
+ -- this setting is independent of vim.opt.timeoutlen
235
+ delay = 0,
236
icons = {
237
-- set icon mappings to true if you have a Nerd Font
238
mappings = vim.g.have_nerd_font,
0 commit comments