From df4a2e5c20f77c90ce5b2e8c337c3568784901b6 Mon Sep 17 00:00:00 2001 From: qwjyh Date: Wed, 15 Nov 2023 22:34:30 +0900 Subject: [PATCH] fix: nvim: remove leanls from lspconfig ref: https://github.com/neovim/nvim-lspconfig/wiki/Language-specific-plugins --- dotfiles/neovim/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/neovim/init.lua b/dotfiles/neovim/init.lua index 07562f0..5e1bdf2 100644 --- a/dotfiles/neovim/init.lua +++ b/dotfiles/neovim/init.lua @@ -565,7 +565,7 @@ lspconfig.powershell_es.setup { -- } local lss = { "pyright", "rust_analyzer", "texlab", "ccls", "clangd", "tsserver", --[["tailwindcss"]] "hls", "cmake", - "csharp_ls", "html", "r_language_server", "leanls" } + "csharp_ls", "html", "r_language_server" } for _, ls in pairs(lss) do lspconfig[ls].setup { on_attach = on_attach,