Adding and removing plugins
This commit is contained in:
19
lua/taken/plugins/beacon.lua
Normal file
19
lua/taken/plugins/beacon.lua
Normal 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,
|
||||
}
|
||||
@@ -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,
|
||||
}
|
||||
Reference in New Issue
Block a user