You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 12, 2022. It is now read-only.
Is your feature request related to a problem? Please describe.
LspInstallInfo lists a lot of server configuration settings, and it's not clear how we can change these.
Describe the solution you'd like
Add a paragraph in the documentation describing an example.
For instance it took me while to figure out how to enable/disable plugins in the pylsp server.
One thing I don't find very useful is the McCabe complexity check. Finally I got it working via the lspconfig setup function using:
require('lspconfig').pylsp.setup {
on_attach=on_attach,
flags= {
-- This will be the default in neovim 0.7+debounce_text_changes=150,
},
settings= {
pylsp= {
plugins= {
-- pylint = { enabled = true },mccabe= { enabled=false }
}
}
}
}
This might be server specific, but it would be nice to have this in the documentation to make it easier for people to find and tweak their server settings.
Other clients which have this feature
No response
Describe potential alternatives you've considered
No response
Additional context
I'm not sure if this is the place to have this information but it would help users of your plugin.
Hello! nvim-lsp-installer is not responsible for setting up servers. What's displayed there is a read-only overview of the server's configuration schema. It's displayed first and foremost to aid discoverability of which settings each server supports.
Is your feature request related to a problem? Please describe.
LspInstallInfo
lists a lot of server configuration settings, and it's not clear how we can change these.Describe the solution you'd like
Add a paragraph in the documentation describing an example.
For instance it took me while to figure out how to enable/disable plugins in the
pylsp
server.One thing I don't find very useful is the McCabe complexity check. Finally I got it working via the
lspconfig
setup function using:This might be server specific, but it would be nice to have this in the documentation to make it easier for people to find and tweak their server settings.
Other clients which have this feature
No response
Describe potential alternatives you've considered
No response
Additional context
I'm not sure if this is the place to have this information but it would help users of your plugin.
I posted it on the
lspconfig
GitHub as well neovim/nvim-lspconfig#1880The text was updated successfully, but these errors were encountered: