Hey guys,
I wanted to disable the highlighting of variables and their references:
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