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 de44f49 commit 70b0566Copy full SHA for 70b0566
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
@@ -274,6 +273,9 @@ require('lazy').setup({
274
273
'folke/which-key.nvim',
275
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
276
opts = {
+ -- delay between pressing a key and opening which-key (milliseconds)
277
+ -- this setting is independent of vim.opt.timeoutlen
278
+ delay = 0,
279
icons = {
280
-- set icon mappings to true if you have a Nerd Font
281
mappings = vim.g.have_nerd_font,
0 commit comments