Usage with nvim-lsp-installer
#89
Description
Hello everyone,
I'm currently trying to integrate this plugin together with https://github.com/williamboman/nvim-lsp-installer.
I want to use nvim-lsp-installer
to manage the installation of rust-analyzer
and use this plugin for extended capabilities. But both api's are pretty incompatible.
nvim-lsp-installer
wants me to call its setup function in a callback provided by it and rust-tools.nvim
also
wants me to run their setup function to set everything up.
It seems like that it would be much more natural if rust-tools.nvim
would provide a public function to inject
(extend) the lsp server settings configuration instead of internalizing everything. (At least it should provide
the option for extended use cases.)
What do you think? Is this a good idea? Do you have other ideas on how to integrate these two plugins?