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 a040855 commit f2761dfCopy full SHA for f2761df
init.lua
@@ -135,7 +135,6 @@ vim.opt.signcolumn = 'yes'
135
vim.opt.updatetime = 250
136
137
-- Decrease mapped sequence wait time
138
--- Displays which-key popup sooner
139
vim.opt.timeoutlen = 300
140
141
-- Configure how new splits should be opened
@@ -286,6 +285,9 @@ require('lazy').setup({
286
285
'folke/which-key.nvim',
287
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
288
opts = {
+ -- delay between pressing a key and opening which-key (milliseconds)
289
+ -- this setting is independent of vim.opt.timeoutlen
290
+ delay = 0,
291
icons = {
292
-- set icon mappings to true if you have a Nerd Font
293
mappings = vim.g.have_nerd_font,
0 commit comments