1

I recently shifted from VScode to neovim, and I used NVChad for the quick setup. I installed all lsps using mason and I didn't install any linters but on using neovim, pylint is already running over my code.

Image showing pylint is running

Mason showing no linter were installed

I tried googling stuff and going through NVChad documentation but couldn't find any help.

romainl
  • 186,200
  • 21
  • 280
  • 313
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Jun 27 '23 at 05:19

2 Answers2

1

I was using python-language-server which automatically enables linter if available (https://github.com/palantir/python-language-server)

0

Take a look at your nvim/lua/custom/configs/lspconfig.lua and look at

local servers = { }

Maybe pylint is there, if that doesn't help try to reinstalling NVChad

TRENWAR
  • 3
  • 4