From a897dc9e0170e3e47e7bc2b6eaa62b0ebbd489ac Mon Sep 17 00:00:00 2001 From: phucisstupid <125681538+phucisstupid@users.noreply.github.com> Date: Sun, 21 Sep 2025 20:03:22 +0700 Subject: [PATCH] feat(editor.flash): enable autojump --- lua/lazyvim/plugins/editor.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/editor.lua b/lua/lazyvim/plugins/editor.lua index 6e2c894e..77ca7911 100644 --- a/lua/lazyvim/plugins/editor.lua +++ b/lua/lazyvim/plugins/editor.lua @@ -32,7 +32,11 @@ return { event = "VeryLazy", vscode = true, ---@type Flash.Config - opts = {}, + opts = { + jump = { + autojump = true, + }, + }, -- stylua: ignore keys = { { "s", mode = { "n", "x", "o" }, function() require("flash").jump() end, desc = "Flash" },