Disable visual highlighting of variables with related references

Hey guys,

I wanted to disable the highlighting of variables and their references:

image

I achieved that with the following setting for lsp-config:

return {
    "neovim/nvim-lspconfig",
    opts = {
        document_highlight = {
            enabled = false,
        },
    },
}

However, when I disable this feature, I cannot use the ‘[[’-keybinding anymore, which brings me to the previous reference. But I want to keep this behaviour. I just want to disable the visual highlighting of references.

Does anyone know how to do that?
Thanks :slight_smile: