Nvim: add new plugins

This commit is contained in:
Robert Kmieć
2024-02-29 23:25:41 +01:00
parent 05e8624509
commit 4bd5c09035
19 changed files with 234 additions and 1 deletions

View File

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