Adding and removing plugins

This commit is contained in:
2023-09-05 12:35:26 +02:00
parent 0e061f44ef
commit 84248a0664
2 changed files with 19 additions and 24 deletions

View File

@@ -0,0 +1,19 @@
return {
"rainbowhxch/beacon.nvim",
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 = {},
})
end,
}