From 48377725bc253f0ac0063a17d58b09e9369c0b42 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Wed, 11 Dec 2024 12:49:15 +0100 Subject: [PATCH] Remove required lsp servers --- lua/plugins/nvim-lspconfig.lua | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lua/plugins/nvim-lspconfig.lua b/lua/plugins/nvim-lspconfig.lua index 018ee7c..a825b37 100644 --- a/lua/plugins/nvim-lspconfig.lua +++ b/lua/plugins/nvim-lspconfig.lua @@ -23,8 +23,8 @@ return { -- LSP Configuration & Plugins config = function() -- Manual config for Nushell LSP -- TODO: Remove once `mason-lspconfig` supports Nushell - require('lspconfig').nushell.setup {} - require('lspconfig').janet_lsp.setup {} + -- require('lspconfig').nushell.setup {} + -- require('lspconfig').janet_lsp.setup {} -- Brief aside: **What is LSP?** -- @@ -167,13 +167,13 @@ return { -- LSP Configuration & Plugins -- - settings (table): Override the default settings passed when initializing the server. -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/ local servers = { - clangd = {}, - gopls = {}, - pyright = {}, - rust_analyzer = {}, - zls = {}, - jdtls = {}, - bashls = {}, + -- clangd = {}, + -- gopls = {}, + -- pyright = {}, + -- rust_analyzer = {}, + -- zls = {}, + -- jdtls = {}, + -- bashls = {}, -- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs -- -- Some languages (like typescript) have entire language plugins that can be useful: