Files
neovim-config/lua/plugins/flash.lua
Tyler Hallada a060053a3f Disable flash for line-level char find
It's not working for me and I cannot figure out why
2025-05-14 17:32:11 -04:00

11 lines
187 B
Lua

return {
"folke/flash.nvim",
opts = {
modes = {
char = {
enabled = false, -- idk why but this does not work for me, ';' and ',' do not repeat
},
},
},
}