2024-01-19 22:34:37 +01:00
|
|
|
local on_attach = require("plugins.configs.lspconfig").on_attach
|
|
|
|
local capabilities = require("plugins.configs.lspconfig").capabilities
|
|
|
|
|
|
|
|
local lspconfig = require "lspconfig"
|
|
|
|
|
|
|
|
-- if you just want default config for the servers then put them in a table
|
2024-01-20 16:22:40 +01:00
|
|
|
local servers = {
|
|
|
|
"html",
|
|
|
|
"cssls",
|
|
|
|
"tsserver",
|
|
|
|
"clangd",
|
|
|
|
"pyright",
|
|
|
|
"rust_analyzer",
|
|
|
|
"bashls",
|
|
|
|
"cmake",
|
|
|
|
}
|
2024-01-19 22:34:37 +01:00
|
|
|
|
|
|
|
for _, lsp in ipairs(servers) do
|
|
|
|
lspconfig[lsp].setup {
|
|
|
|
on_attach = on_attach,
|
|
|
|
capabilities = capabilities,
|
|
|
|
}
|
|
|
|
end
|