mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 00:49:03 +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",
|
"neovim/nvim-lspconfig",
|
||||||
opts = {
|
opts = {
|
||||||
|
setup = {
|
||||||
|
rust_analyzer = function()
|
||||||
|
return true
|
||||||
|
end,
|
||||||
|
},
|
||||||
servers = {
|
servers = {
|
||||||
taplo = {
|
taplo = {
|
||||||
keys = {
|
keys = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue