fix(rust): let rustaceans.nvim setup rust_analyzer

fix this warning
```
   Warn  11:52:45 PM notify.warn nvim-lspconfig.rust_analyzer has been setup.
This will likely lead to conflicts with the rustaceanvim LSP client.
See ':h rustaceanvim.mason'
```
fix taken from https://github.com/mrcjkb/rustaceanvim/blob/master/doc/mason.txt
This commit is contained in:
mirsella 2024-05-30 23:50:37 +02:00
parent 060f56d6d4
commit 34ec60c47f
No known key found for this signature in database
GPG key ID: C1A8791D70E775DE

View file

@ -103,6 +103,11 @@ return {
{
"neovim/nvim-lspconfig",
opts = {
setup = {
rust_analyzer = function()
return true
end,
},
servers = {
taplo = {
keys = {