more stuff too lazy to seperate

This commit is contained in:
2023-11-24 21:38:31 -05:00
parent ebf9d2d1c4
commit f35b13d669
33 changed files with 488 additions and 246 deletions

View File

@ -7,13 +7,13 @@ el.reset_windows()
local builtin = require("el.builtin")
local sections = require("el.sections")
local c = require "components"
local c = require("core.statusbar.components")
local function hl(fg, b)
b = b or false
return c.extract_hl({
bg = {["StatusLine"] = "bg"},
fg = {[fg] = "fg"},
bg = { ["StatusLine"] = "bg" },
fg = { [fg] = "fg" },
bold = b,
})
end