fix multiple rust-analyzer by disabling one

This commit is contained in:
Frederik
2023-12-26 12:07:29 +01:00
parent 0d49ee8eb4
commit b4f99d775d

View File

@@ -4,4 +4,14 @@ return {
version = "^3", -- Recommended
ft = { "rust" },
},
{
"neovim/nvim-lspconfig",
opts = {
setup = {
rust_analyzer = function()
return true
end,
},
},
},
}