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 d3d54f3 commit fdc61f1Copy full SHA for fdc61f1
init.lua
@@ -115,7 +115,6 @@ vim.opt.signcolumn = 'yes'
115
vim.opt.updatetime = 250
116
117
-- Decrease mapped sequence wait time
118
--- Displays which-key popup sooner
119
vim.opt.timeoutlen = 300
120
121
-- Configure how new splits should be opened
@@ -346,6 +345,9 @@ require('lazy').setup({
346
345
'folke/which-key.nvim',
347
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
348
opts = {
+ -- delay between pressing a key and opening which-key (milliseconds)
349
+ -- this setting is independent of vim.opt.timeoutlen
350
+ delay = 0,
351
icons = {
352
-- set icon mappings to true if you have a Nerd Font
353
mappings = vim.g.have_nerd_font,
0 commit comments