From 9576081e871a801f60367e7180543fa41c384755 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Fri, 8 Nov 2024 09:15:17 +0100 Subject: [PATCH] fix(words): disable notify_jump by default --- lua/snacks/words.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/snacks/words.lua b/lua/snacks/words.lua index 86142842..71917002 100644 --- a/lua/snacks/words.lua +++ b/lua/snacks/words.lua @@ -9,7 +9,7 @@ local M = {} local defaults = { enabled = true, -- enable/disable the plugin debounce = 200, -- time in ms to wait before updating - notify_jump = true, -- show a notification when jumping + notify_jump = false, -- show a notification when jumping notify_end = true, -- show a notification when reaching the end }