From 5f4a30c8cca21c2a05ace79ab7f3e484a50111ec Mon Sep 17 00:00:00 2001 From: Seymur Bagirov Date: Thu, 30 May 2024 02:42:07 +0400 Subject: [PATCH] fix: do not attach fsautocomplete from mason ionide attaches it already --- nvim/lua/themystery/plugins/lsp.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/nvim/lua/themystery/plugins/lsp.lua b/nvim/lua/themystery/plugins/lsp.lua index 2baa936..348419b 100644 --- a/nvim/lua/themystery/plugins/lsp.lua +++ b/nvim/lua/themystery/plugins/lsp.lua @@ -154,6 +154,7 @@ return { require('lspconfig').lua_ls.setup(lua_opts) end, rust_analyzer = lsp.noop, + fsautocomplete = lsp.noop, } })