vim

Martynas Maciulevičius 2023-11-01T10:53:23.579199Z

Does anybody else have an issue where you open a Clojure file and highlighting is not present? And then you type a symbol and then it "hooks up". I think I have some weird setup of my LSP server because I remember that previously it worked without me doing anything. This same thing happens for "find references". I'm trying to find the bug for the last hour or so but I don't understand which plugin was updated and broke this. I don't like to open each file that could contain references of a function just to find references. From what I understand there is some autocommand that doesn't fire when I enter a file but I don't know which plugin it is. I have these plugins:

Plug 'junnplus/lsp-setup.nvim'
Plug 'neovim/nvim-lspconfig'
Plug 'williamboman/mason.nvim'
Plug 'williamboman/mason-lspconfig.nvim'
I tried to fix their versions to older ones but it didn't fix the issue:
"  Plug 'junnplus/lsp-setup.nvim', { 'commit': 'b5db00455f56d00fee332698f0291886e06a49b0' }
"  Plug 'neovim/nvim-lspconfig',   { 'commit': '5efcd06dc9c45c1654d3f84655fd4ee2f5328f3b' }
"  Plug 'williamboman/mason.nvim', { 'commit': '3f6b544c75c01549f7a2a9e395e0f1cea42b25dd' }
"  Plug 'williamboman/mason-lspconfig.nvim', { 'commit': '828a538ac8419f586c010996aefa5df6eb7c250b' }
The "fun" thing is that with a TypeScript project the highlighting starts up automatically. I don't get something. I also tried to set clojure-lsp version to https://github.com/clojure-lsp/clojure-lsp/releases/tag/2023.05.04-19.38.01 but it didn't do anything. So I think that it's a problem with my config šŸ¤”