Description
I love the idea of this plugin! I've been struggling with getting neovim to work well with python + bazel for a while now. Specifically, I have never been able to get it to reliably detect third party dependencies.
I tried this plugin out and it doesn't seem to be finding my external dependencies. Whenever I edit a file, the plugin generates a symlink in the directory for that package called pyrightconfig.json.
In my case, the extraPaths field doesn't seem to find my external packages.
I am using the default config like so in my packer config:
use({
"numine777/py-bazel.nvim",
config = function()
require("py-bazel").setup()
end,
})
There isn't anything special about my bazel repository. I am using rules_python to install the pip dependencies in the WORKSPACE.bazel file.
Any ideas on what I am missing? I'd really love to get this working! Thanks for any help.