Avoid real-time rust analyzer

This commit is contained in:
Jan Hamal Dvořák 2025-03-08 17:17:10 +01:00
parent 62dbab2600
commit 6fa3768d6d

View file

@ -18,10 +18,15 @@ if next(config) then
settings = { settings = {
["rust-analyzer"] = { ["rust-analyzer"] = {
checkOnSave = { checkOnSave = {
command = "clippy" command = "clippy",
enable = true
},
diagnostics = {
enable = false,
}, },
check = { check = {
command = "check" command = "check",
extraArgs = {"--all-features"}
}, },
}, },
}, },