dotfiles/nvim/lua/plugins/flash.lua

11 lines
320 B
Lua
Raw Normal View History

2024-01-17 13:01:32 +01:00
return {
"folke/flash.nvim",
event = "VeryLazy",
opts = {
highlight = {backdrop=false},
modes = {char = {highlight = {backdrop = false}}, search = {enabled = false}},
prompt = {enabled = false}
},
keys = {{"s", mode = {"n","x","o"}, function() require("flash").jump() end}}
}