Files
neovim-config/lua/taken/plugins/beacon.lua
Taken 9556024c93 Added types
Signed-off-by: Taken <taken@mairimashita.org>
2024-03-17 16:34:11 +01:00

24 lines
558 B
Lua

--- @type LazyPluginSpec
return {
"rainbowhxch/beacon.nvim",
event = { "BufReadPre", "BufNewFile" },
config = function()
local beacon = require("beacon")
beacon.setup({
enable = true,
size = 60,
fade = true,
minimal_jump = 10,
show_jumps = true,
focus_gained = false,
shrink = true,
timeout = 750,
ignore_buffers = {},
ignore_filetypes = {
"NeogitStatus",
},
})
end,
}