25 lines
527 B
Lua
25 lines
527 B
Lua
|
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
|
||
|
local servers = {
|
||
|
"html",
|
||
|
"cssls",
|
||
|
"tsserver",
|
||
|
"intelephense",
|
||
|
"pyright",
|
||
|
"tailwindcss",
|
||
|
"cssmodules_ls",
|
||
|
"emmet_ls",
|
||
|
"lua_ls",
|
||
|
}
|
||
|
|
||
|
for _, lsp in ipairs(servers) do
|
||
|
lspconfig[lsp].setup {
|
||
|
on_attach = on_attach,
|
||
|
capabilities = capabilities,
|
||
|
}
|
||
|
end
|