✨ feat(nvim): disable ruff publish diagnostics in favour of pyright lsp diagnostics
This commit is contained in:
parent
2b1fe21845
commit
db555dd8c3
1 changed files with 12 additions and 0 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue