Remove required lsp servers

This commit is contained in:
Imbus 2024-12-11 12:49:15 +01:00
parent 9c86e08909
commit 48377725bc

View file

@ -23,8 +23,8 @@ return { -- LSP Configuration & Plugins
config = function() config = function()
-- Manual config for Nushell LSP -- Manual config for Nushell LSP
-- TODO: Remove once `mason-lspconfig` supports Nushell -- TODO: Remove once `mason-lspconfig` supports Nushell
require('lspconfig').nushell.setup {} -- require('lspconfig').nushell.setup {}
require('lspconfig').janet_lsp.setup {} -- require('lspconfig').janet_lsp.setup {}
-- Brief aside: **What is LSP?** -- Brief aside: **What is LSP?**
-- --
@ -167,13 +167,13 @@ return { -- LSP Configuration & Plugins
-- - settings (table): Override the default settings passed when initializing the server. -- - 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/ -- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
local servers = { local servers = {
clangd = {}, -- clangd = {},
gopls = {}, -- gopls = {},
pyright = {}, -- pyright = {},
rust_analyzer = {}, -- rust_analyzer = {},
zls = {}, -- zls = {},
jdtls = {}, -- jdtls = {},
bashls = {}, -- bashls = {},
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs -- ... 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: -- Some languages (like typescript) have entire language plugins that can be useful: