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,
}

View File

@@ -1,24 +0,0 @@
return {
"folke/twilight.nvim",
config = function()
local twilight = require("twilight")
twilight.setup({
dimming = {
alpha = 0.25,
color = { "Normal", "#ffffff" },
term_bg = "#000000",
inactive = true,
},
context = 100000,
treesitter = false,
expand = {
"function",
"method",
"table",
"if_statement",
},
exclude = {},
})
end,
}