[2024-06-07] Add status col plugin and default feline theme

This commit is contained in:
Andrew Conlin 2024-06-07 10:44:26 +01:00
parent f278ae145c
commit 013e2225eb
4 changed files with 68 additions and 6 deletions

View file

@ -0,0 +1,16 @@
local builtin = require("statuscol.builtin")
require('statuscol').setup({
relculright = true,
ft_ignore = { 'neo-tree' },
segments = {
{
sign = { namespace={'diag*'} },
click = "v:lua.ScSa"
},
{ text = { builtin.lnumfunc }, click = "v:lua.ScLa", },
{
sign = { namespace={'git*'} },
click = "v:lua.ScSa"
},
}
})