format flash file

This commit is contained in:
Oliver Hartmann 2023-07-10 11:57:25 +02:00
parent 8a8ea01a2f
commit 6b1d57e28a

View File

@ -1,6 +1,6 @@
return {
"folke/flash.nvim",
event = "VeryLazy",
'folke/flash.nvim',
event = 'VeryLazy',
---@type Flash.Config
opts = {
modes = {
@ -14,18 +14,18 @@ return {
},
keys = {
{
"s",
mode = { "n", "x", "o" },
's',
mode = { 'n', 'x', 'o' },
function()
-- default options: exact mode, multi window, all directions, with a backdrop
require("flash").jump()
require('flash').jump()
end,
},
{
"S",
mode = { "n", "o", "x" },
'S',
mode = { 'n', 'o', 'x' },
function()
require("flash").treesitter()
require('flash').treesitter()
end,
},
},