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 a3d01a5 commit d45ff52Copy full SHA for d45ff52
init.lua
@@ -93,7 +93,6 @@ vim.opt.signcolumn = 'yes'
93
vim.opt.updatetime = 250
94
95
-- Decrease mapped sequence wait time
96
--- Displays which-key popup sooner
97
vim.opt.timeoutlen = 300
98
99
-- Configure how new splits should be opened
@@ -251,6 +250,9 @@ require('lazy').setup({
251
250
'folke/which-key.nvim',
252
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
253
opts = {
+ -- delay between pressing a key and opening which-key (milliseconds)
254
+ -- this setting is independent of vim.opt.timeoutlen
255
+ delay = 0,
256
icons = {
257
-- set icon mappings to true if you have a Nerd Font
258
mappings = vim.g.have_nerd_font,
0 commit comments