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 422abca commit 68e9280Copy full SHA for 68e9280
init.lua
@@ -47,7 +47,6 @@ vim.opt.signcolumn = 'yes'
47
vim.opt.updatetime = 250
48
49
-- Decrease mapped sequence wait time
50
--- Displays which-key popup sooner
51
vim.opt.timeoutlen = 300
52
53
-- Configure how new splits should be opened
@@ -191,6 +190,9 @@ require('lazy').setup({
191
190
'folke/which-key.nvim',
192
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
193
opts = {
+ -- delay between pressing a key and opening which-key (milliseconds)
194
+ -- this setting is independent of vim.opt.timeoutlen
195
+ delay = 0,
196
icons = {
197
-- set icon mappings to true if you have a Nerd Font
198
mappings = vim.g.have_nerd_font,
0 commit comments