ojroques/nvim-hardline

Colors are not working

peri4n opened this issue · 3 comments

I see no colors in the status bar. Everything strays grey. Any idea of what could be the cause?

Running :highlight shows no hardline specific highlight group.

I am using the defautl configuration shown in the README.md

Highlight groups are created in these lines:

local function set_hlgroups()
for class, attr in pairs(M.options.theme) do
for state, args in pairs(attr) do
local hlgroup = string.format('Hardline_%s_%s', class, state)
local a = {}
for k, v in pairs(args) do
table.insert(a, string.format('%s=%s', k, v))
end
a = table.concat(a, ' ')
cmd(string.format('autocmd ColorScheme * hi %s %s', hlgroup, a))
end
end
end

Maybe the ColorScheme event is not triggered. I'll look into it.

I've updated the plugin so that they are create on startup as well. Please tell me if it's still not working.

Wow, that was quick!

Yes, it fixes it. Thank you very much!