From 06327c98734aa28f9bb2a13f928784f5d9daba83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Wi=C4=85cek?= Date: Fri, 14 Nov 2025 01:26:47 +0100 Subject: [PATCH] Better escape: make timeout shorter --- lua/plugins/better-escape.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/better-escape.lua b/lua/plugins/better-escape.lua index 30026f9..e6c1a22 100644 --- a/lua/plugins/better-escape.lua +++ b/lua/plugins/better-escape.lua @@ -1,7 +1,7 @@ return { "max397574/better-escape.nvim", opts = { - timeout = vim.o.timeoutlen, -- after `timeout` passes, you can press the escape key and the plugin will ignore it + timeout = 100, -- after `timeout` passes, you can press the escape key and the plugin will ignore it default_mappings = true, -- setting this to false removes all the default mappings }, }