Files
yadm/.config/nvim/lua/plugins/column.lua
2024-02-29 23:25:41 +01:00

25 lines
506 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 = false
}