feat: tabline

This commit is contained in:
2025-10-20 22:41:03 +03:00
parent d4ec924088
commit 804832e0c3
3 changed files with 91 additions and 0 deletions

View File

@@ -12,9 +12,13 @@ return {
highlights = function(c, tool)
c.bg_float = tool(152)
return {
ModeMsg = { fg = c.yellow, bg = c.none, bold = true },
WinSeparator = { fg = c.outline, bg = c.base },
StatusLine = { fg = c.outline, bg = c.base },
StatusLineNC = { fg = c.text, bg = c.base, bold = true },
TabLine = { fg = c.muted, bg = c.none },
TabLineSel = { fg = c.text, bg = c.none, bold = true },
TabLineFill = { fg = c.outline_light, bg = c.none },
}
end,
})