Replacing shade with twilight

This commit is contained in:
2023-09-05 00:41:12 +02:00
parent cfee6a0dcb
commit 0e061f44ef
2 changed files with 24 additions and 12 deletions

View File

@@ -0,0 +1,24 @@
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,
}