From 4099290aaf68e070d8c1b0f33a18c5a5909823e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sun, 18 Feb 2024 13:48:42 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(nvim):=20disable=20conflicti?= =?UTF-8?q?ng=20keymaps=20on=20smooth=20scrolling=20extra?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/lua/plugins/extras/ui/smooth-scrolling.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/nvim/lua/plugins/extras/ui/smooth-scrolling.lua b/.config/nvim/lua/plugins/extras/ui/smooth-scrolling.lua index 00a51aa3..634e31f9 100644 --- a/.config/nvim/lua/plugins/extras/ui/smooth-scrolling.lua +++ b/.config/nvim/lua/plugins/extras/ui/smooth-scrolling.lua @@ -5,8 +5,8 @@ return { event = "VeryLazy", opts = { default_keymaps = true, - extra_keymaps = true, - extended_keymaps = true, + extra_keymaps = false, + extended_keymaps = false, default_delay = 2, }, }