mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-05-14 15:09:44 +00:00
mig packer to lazy and archive
Signed-off-by: d0zingcat <leewtang@gmail.com>
This commit is contained in:
27
nvim/lua/plugins/statuscol.lua
Normal file
27
nvim/lua/plugins/statuscol.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user