Hopefully this is the right place to put this. I’m brand new to the nvim community, but I want to get as far in as possible in the next few months.
I’ve setup nvim-lsp, nvim-lspinstall, and nvim-cmp in my init.vim and for the most part, it works pretty well. In Python, I get errors and warnings once I save the file using the pyright language server.
However, I’m not getting the same functionality for eslint in my React projects. Even with blatant errors, nothing shows up - which is annoying! Moreover, the snippets and helpful auto-complete features I was hoping would be there aren’t there - typing in import use at the top doesn’t suggest anything.
I would appreciate any help to fix this - I really want to use nvim as my primary code-editor but these setup problems have been stalling me for the past week or so, and I’m considering just moving back to vs code.
Lines 37-57 is the default lua code provided by nvim-cmp. I don’t tinker with any configurations otherwise - as you can see, every other plugin is just being installed.
I guess the problem is that the eslint language server is looking for a configuration file to figure out how to do diagnostics, but it’s not able to find an appropriate one.