2023-04-19 03:53:25 +00: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
|
2023-06-25 17:23:20 +00:00
|
|
|
local servers = { "html", "cssls", "tsserver", "clangd", "hls", "gopls" }
|
2023-04-19 03:53:25 +00:00
|
|
|
|
|
|
|
for _, lsp in ipairs(servers) do
|
|
|
|
lspconfig[lsp].setup {
|
|
|
|
on_attach = on_attach,
|
|
|
|
capabilities = capabilities,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
--
|
|
|
|
-- lspconfig.pyright.setup { blabla}
|