tamago324 / nlsp-settings.nvim

A plugin for setting Neovim LSP with JSON or YAML files
MIT License
316 stars 18 forks source link

NlspConfig for pyright missing autocompletion features #26

Closed sperezconesa closed 2 years ago

sperezconesa commented 2 years ago

Hello everyone!

When I try to make an NlspConfig for pyright, it works nicely but there are some config parameters I can't use. I am missing some important parameters of pyright configuration in the autocomplete. For example exclude that can be found in the configuration.md of pyright. Adding the "exclude":"path_to exclude" doesn't work. If this is not implemented I think it would be a great feature to add.

Thanks for your help and keep up the great work. Sergio

tamago324 commented 2 years ago

I think that setting can be configured in pyrightconfig.json or pyproject.toml. In nlsp-settings.nvim, only values that can be set in VSCode can be set.

See contributes.configuration at package.json.

sperezconesa commented 2 years ago

Oh, that's too bad. Well thanks a lot anyway!