feat(nvim): disable ruff publish diagnostics in favour of pyright lsp diagnostics

This commit is contained in:
Sergio Laín 2024-02-18 13:02:01 +01:00
parent 2b1fe21845
commit db555dd8c3
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -8,6 +8,18 @@ return {
return opts return opts
end, end,
}, },
{
"neovim/nvim-lspconfig",
opts = {
servers = {
ruff_lsp = {
handlers = {
["textDocument/publishDiagnostics"] = function() end,
},
},
},
},
},
{ {
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
opts = function(_, opts) opts = function(_, opts)