From b4f99d775d7f69d5a3b165d3ae42afc47f615d4c Mon Sep 17 00:00:00 2001 From: Frederik Date: Tue, 26 Dec 2023 12:07:29 +0100 Subject: [PATCH] fix multiple rust-analyzer by disabling one --- lua/plugins/rustaeceanvim.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lua/plugins/rustaeceanvim.lua b/lua/plugins/rustaeceanvim.lua index a5854e0..7a255d3 100644 --- a/lua/plugins/rustaeceanvim.lua +++ b/lua/plugins/rustaeceanvim.lua @@ -4,4 +4,14 @@ return { version = "^3", -- Recommended ft = { "rust" }, }, + { + "neovim/nvim-lspconfig", + opts = { + setup = { + rust_analyzer = function() + return true + end, + }, + }, + }, }