17 lines
279 B
Lua
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",
|
|
},
|
|
},
|
|
}
|