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 1040385 commit 2daf580Copy full SHA for 2daf580
init.lua
@@ -137,7 +137,6 @@ vim.opt.signcolumn = 'yes'
137
vim.opt.updatetime = 250
138
139
-- Decrease mapped sequence wait time
140
--- Displays which-key popup sooner
141
vim.opt.timeoutlen = 300
142
143
-- Configure how new splits should be opened
@@ -366,6 +365,9 @@ require('lazy').setup({
366
365
'folke/which-key.nvim',
367
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
368
opts = {
+ -- delay between pressing a key and opening which-key (milliseconds)
369
+ -- this setting is independent of vim.opt.timeoutlen
370
+ delay = 0,
371
icons = {
372
-- set icon mappings to true if you have a Nerd Font
373
mappings = vim.g.have_nerd_font,
0 commit comments