mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-05-14 07:26:44 +00:00
28 lines
912 B
Lua
28 lines
912 B
Lua
return {
|
|
'luukvbaal/statuscol.nvim',
|
|
event = 'VeryLazy',
|
|
opts = function()
|
|
local builtin = require('statuscol.builtin')
|
|
return {
|
|
relculright = true,
|
|
segments = {
|
|
{
|
|
sign = { name = { '.*' }, maxwidth = 1, auto = true },
|
|
click = 'v:lua#.ScSa'
|
|
},
|
|
{ text = { builtin.lnumfunc }, click = 'v:lua.ScLa', },
|
|
{ text = { builtin.foldfunc }, click = 'v:lua.ScFa' },
|
|
{
|
|
text = { ' ' },
|
|
condition = { builtin.not_empty, true, builtin.not_empty },
|
|
click = 'v:lua.ScFa'
|
|
},
|
|
{
|
|
sign = { name = { 'GitSigns' }, maxwidth = 1, colwidth = 1, auto = true },
|
|
click = 'v:lua.ScSa'
|
|
},
|
|
}
|
|
}
|
|
end
|
|
}
|