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