Disable flash for line-level char find

It's not working for me and I cannot figure out why
This commit is contained in:
2025-05-14 17:32:11 -04:00
parent 0d09d7334b
commit a060053a3f

10
lua/plugins/flash.lua Normal file
View File

@@ -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
},
},
},
}