jesseleite / nvim-noirbuddy

🖤 A highly customizable minimalist theme building framework
345 stars 16 forks source link

add option to configure styles (italic, bold, underline, undercurl etc.) #2

Closed n1ghtmare closed 1 year ago

n1ghtmare commented 1 year ago

This adds the option for the user to configure styles such as italic, underline, undercurl and bold. So the config would look something like this:

noirbuddy.setup({
    diagnostic_error = "#ff0038",
    diff_add = "#00ff77",
    diff_change = "#d5d5d5",
    diff_delete = "#ff0038",
    -- You get the idea
    styles = {
        italic = true,
        undercurl = false,
        bold = false,
        underline = true,
    }
})