nvim icon indicating copy to clipboard operation
nvim copied to clipboard

Config properties

Open karshPrime opened this issue 1 year ago • 1 comments

What properties in config must be overridden to change colour for comments and linenumber?

Here're my current configs:

require('everblush').setup({
    transparent_background = true,
    nvim_tree = { contrast = false, },
    override = {
        -- comment
        -- line number
    },
})
vim.cmd('colorscheme everblush')

karshPrime avatar Jun 24 '24 09:06 karshPrime

highlight names are same as nvims highlight group. for example linenumber is LineNr & comment is Comment. I presume you have telescope setup, if so use :Telescope highlights to search all highlights.

psynyde avatar Jul 10 '24 17:07 psynyde