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()
-- 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: