From a060053a3f954fd103dca0468cdad29c5b28d1d3 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Wed, 14 May 2025 17:32:11 -0400 Subject: [PATCH] Disable flash for line-level char find It's not working for me and I cannot figure out why --- lua/plugins/flash.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/plugins/flash.lua diff --git a/lua/plugins/flash.lua b/lua/plugins/flash.lua new file mode 100644 index 0000000..60bf94d --- /dev/null +++ b/lua/plugins/flash.lua @@ -0,0 +1,10 @@ +return { + "folke/flash.nvim", + opts = { + modes = { + char = { + enabled = false, -- idk why but this does not work for me, ';' and ',' do not repeat + }, + }, + }, +}