Mofiqul / vscode.nvim

Neovim/Vim color scheme inspired by Dark+ and Light+ theme in Visual Studio Code
MIT License
695 stars 111 forks source link

How to change the colour of variable "is not accessed" #154

Closed alifhughes closed 11 months ago

alifhughes commented 11 months ago

Hello,

I would like to change the colour of the highlighting when the lsp realises the variable is not accessed, this is because I find it too similar to the colour of a comment. How would this be possible?

Screenshot 2023-10-15 at 18 25 42

Thanks!

alifhughes commented 11 months ago

I found it by running :so $VIMRUNTIME/syntax/hitest.vim

      require('vscode').setup({
        group_overrides = {
            DiagnosticUnnecessary = { underline=true },
        }
      })