-
-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Description
Hello, I've been trying to update the headline colors for neorg without success. See image below:

I set the highlight values in my init.lua file:
vim.cmd [[highlight Headline1 guibg=#1e2718]]
vim.cmd [[highlight Headline2 guibg=#21262d]]
vim.cmd [[highlight CodeBlock guibg=#1c1c1c]]
vim.cmd [[highlight Dash guibg=#D19A66 gui=bold]]
And then specify the headline highlights (I'm using packer):
{ "lukas-reineke/headlines.nvim", -- adds highlights for Neorg and markdown
ft = { "markdown", "org", "norg" },
after = 'nvim-treesitter',
config = function()
require('headlines').setup(
{
norg = {
headline_highlights = { "Headline1", "Headline2" },
bullets = {},
fat_headline_lower_string = "▀",
},
}
)
end,
}
But it renders weirdly as shared in the image above. When I comment out headline_highlights, it renders as expected:

I thought it might've been a font issue, so I switched to Fira Code temporarily. However, I came across the same issue and I would rather not have to switch Nerd Fonts anyway (I'm using MesloGS NF) since my other plugins require it.
Just wondering if there are any ideas as to what I may be missing here? Any help would be appreciated!
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels