feat: add pylint option to python LSP server
This commit is contained in:
parent
4ee0c658de
commit
2203b49339
1 changed files with 11 additions and 1 deletions
|
@ -10,7 +10,17 @@ lspconfig.lua_ls.setup {
|
|||
}
|
||||
lspconfig.marksman.setup{}
|
||||
lspconfig.nil_ls.setup {}
|
||||
lspconfig.pylsp.setup {}
|
||||
lspconfig.pylsp.setup {
|
||||
settings = {
|
||||
pylsp = {
|
||||
plugins = {
|
||||
pylint = {
|
||||
enabled = true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
vim.api.nvim_create_autocmd('LspAttach', {
|
||||
desc = 'LSP actions',
|
||||
callback = function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue