Files
yadm/.config/nvim/lua/plugins/column.lua
2024-06-03 23:34:22 +02:00

25 lines
505 B
Lua

return {
'Bekaboo/deadcolumn.nvim',
opts = {
scope = 'buffer',
---@type string[]|fun(mode: string): boolean
modes = function() return true end,
blending = {
threshold = 0.4,
colorcode = '#000000',
hlgroup = { 'Normal', 'bg' },
},
warning = {
alpha = 0.3,
offset = 0,
colorcode = '#CC0000',
hlgroup = { 'Error', 'bg' },
},
extra = {
---@type string?
follow_tw = nil,
},
},
enabled = true
}