nix-config/modules/nvim/config/lua/plugins/flash.lua
2025-08-14 11:11:38 +02:00

17 lines
279 B
Lua

return {
"folke/flash.nvim",
event = "VeryLazy",
opts = {},
keys = {
{
"<CR>",
mode = { "n", "x", "o" },
function()
if vim.bo.filetype ~= "qf" then
require("flash").jump()
end
end,
desc = "Flash",
},
},
}