Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Not doing anything #11

Open
bellini666 opened this issue Oct 31, 2021 · 4 comments
Open

Not doing anything #11

bellini666 opened this issue Oct 31, 2021 · 4 comments

Comments

@bellini666
Copy link

Hi,

I'm trying to use this with https://github.com/metalelf0/jellybeans-nvim

I have:

    use({
        "folke/lsp-colors.nvim",
        config = function()
            require("lsp-colors").setup({
                Error = "#902020",
                Warning = "#cf6a4c",
                Information = "#ffb964",
                Hint = "#668799",
            })
        end,
    })

But it doesn't get applied to my colorscheme, even if I manually do :lua require("lsp-colors").fix()

Tried to run :verbose hi LspDiagnostisUnderlineError and it says that that highlight group is not defined.

Btw, I'm running neovim from source, latest commit as of today.

@Midren
Copy link

Midren commented Nov 10, 2021

Get a similar problem. Changing LspDiagnostisUnderlineError to DiagnosticUnderlineError helped me. I think they renamed it in some update

@geraldspreer
Copy link

Try set termguicolors. If that makes it work, it means that your colorscheme only uses the ctermfg and ctermbg colors. It is the same for me with base-16.
If your colorscheme does not use the GUI colors, you would need to set the styles manually like @Midren said.

@nathani-axis
Copy link

looks like a lot of the LspDiagnostics... were renamed to be Diagnostics... instead

@ebkalderon
Copy link

It also seems that as of neovim/neovim#15894, Neovim now defines all the relevant Diagnostic.* highlight categories by default, making this plugin no longer functional (since it assumes the highlight categories don't exist).

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants