feat(nvim): add flash.nvim

This commit is contained in:
Price Hiller 2023-09-15 08:21:29 -05:00
parent ae12f4ec5d
commit b8de20eb7a
No known key found for this signature in database

View File

@ -0,0 +1,31 @@
return {
{
"folke/flash.nvim",
opts = {
jump = {
autojump = true,
nohlsearch = true
},
label = {
uppercase = false,
style = "overlay",
},
search = {
char = {
enabled = false
}
}
},
keys = {
{ "/" },
{ "?" },
{
"<c-s>",
mode = { "c" },
function() require("flash").toggle() end,
desc =
"Toggle Flash Search"
},
},
},
}