feat: added extra for flash.nvim

This commit is contained in:
Folke Lemaitre 2023-06-21 10:51:01 +02:00
parent e865b9abe1
commit 318a4c8304
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -0,0 +1,26 @@
return {
{ "ggandor/leap.nvim", enabled = false },
{ "ggandor/flit.nvim", enabled = false },
{
"folke/flash.nvim",
event = "VeryLazy",
---@type Flash.Config
opts = {},
keys = {
{
"s",
mode = { "n", "x", "o" },
function()
require("flash").jump()
end,
},
{
"S",
mode = { "o", "x" },
function()
require("flash").treesitter()
end,
},
},
},
}