LazyVim.LazyVim/lua/lazyvim/plugins/extras/editor/flash.lua
2023-06-22 10:37:47 +02:00

26 lines
483 B
Lua

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 = { "n", "o", "x" },
function()
require("flash").treesitter()
end,
},
},
},
}