From cbb4566a361aafbc0da55a4f4b4a53ed9a6e1b7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Tue, 27 Aug 2024 01:07:36 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20perf(nvim):=20disable=20delay=20?= =?UTF-8?q?for=20the=20cmp=20menu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/lua/plugins/extras/coding/cmp-extended.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/nvim/lua/plugins/extras/coding/cmp-extended.lua b/.config/nvim/lua/plugins/extras/coding/cmp-extended.lua index 22ce07c9..e2eded33 100644 --- a/.config/nvim/lua/plugins/extras/coding/cmp-extended.lua +++ b/.config/nvim/lua/plugins/extras/coding/cmp-extended.lua @@ -47,8 +47,8 @@ return { } opts.performance = { - debounce = 20, - throttle = 20, + debounce = 0, + throttle = 0, fetching_timeout = 20, confirm_resolve_timeout = 20, async_budget = 1,