I have a python repository, I'm using nvim as my ide and jedi-language-server for writing python files. I want to add a path like I can in my .vscode/settings.json -
{
"python.analysis.extraPaths": [
"./<path>"
]
}⏎
This allows the editor to access my dependencies, how do i set the same in nvim
I used :set path
, but I still get where the issue is.