From efb998460f212a0db46fbb6c6130f080dddec9e6 Mon Sep 17 00:00:00 2001 From: TLW <58749948+TinyLittleWheatley@users.noreply.github.com> Date: Mon, 4 Mar 2024 20:20:38 +0330 Subject: [PATCH] Update init.lua Add separate comment for `timeoutlen` option `timeoutlen` option was under unrelated comment with `updatetime` option. --- init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.lua b/init.lua index 16d3c26..c3b00c1 100644 --- a/init.lua +++ b/init.lua @@ -127,6 +127,9 @@ vim.opt.signcolumn = 'yes' -- Decrease update time vim.opt.updatetime = 250 + +-- Decrease mapped sequence wait time +-- Displays which-key popup sooner vim.opt.timeoutlen = 300 -- Configure how new splits should be opened