return { "folke/flash.nvim", event = "VeryLazy", opts = {}, config = function() vim.api.nvim_create_autocmd("BufReadPost", { pattern = "quickfix", callback = function() vim.keymap.set("n", "", "", { buffer = true }) end, }) end, keys = { { "", mode = { "n", "x", "o" }, function() if vim.bo.filetype ~= "qf" then require("flash").jump() end end, desc = "Flash", }, }, }