From 3f96bb135f3b3db1d857a9a6dcb7bc702dc878a5 Mon Sep 17 00:00:00 2001 From: Ralph Azucena Date: Fri, 12 Apr 2024 15:59:29 -0700 Subject: [PATCH] flash.nvim: disable jump on search --- lua/plugins/editor.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lua/plugins/editor.lua b/lua/plugins/editor.lua index 2a9de50..af8e98c 100644 --- a/lua/plugins/editor.lua +++ b/lua/plugins/editor.lua @@ -4,9 +4,10 @@ return { opts = { modes = { search = { - jump = { - nohlsearch = false, - }, + enabled = false, + -- jump = { + -- nohlsearch = false, + -- }, }, }, },