25 lines
578 B
Lua
25 lines
578 B
Lua
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,
|
|
}
|