mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 08:35:53 +02:00
fix(rust): let rustaceans.nvim setup rust_analyzer (#3389)
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:
parent
9f2cc30246
commit
3fadf6af8f
1 changed files with 5 additions and 0 deletions
|
@ -103,6 +103,11 @@ return {
|
|||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
opts = {
|
||||
setup = {
|
||||
rust_analyzer = function()
|
||||
return true
|
||||
end,
|
||||
},
|
||||
servers = {
|
||||
taplo = {
|
||||
keys = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue