21 lines
423 B
Lua
21 lines
423 B
Lua
return {
|
|
"folke/flash.nvim",
|
|
event = "VeryLazy",
|
|
opts = {
|
|
exclude = {
|
|
"notify",
|
|
"noice",
|
|
"cmp_menu",
|
|
"flash_prompt",
|
|
"which_key",
|
|
"qf",
|
|
function(win)
|
|
return not vim.api.nvim_win_get_config(win).focusable
|
|
end,
|
|
},
|
|
},
|
|
-- stylua: ignore
|
|
keys = {
|
|
{ "<CR>", mode = { "n", "x", "o" }, function() require("flash").jump() end, desc = "Flash" },
|
|
},
|
|
}
|