|
|
|
@ -1,16 +1,16 @@ |
|
|
|
|
local on_attach = require("plugins.configs.lspconfig").on_attach |
|
|
|
|
local capabilities = require("plugins.configs.lspconfig").capabilities |
|
|
|
|
|
|
|
|
|
local lspconfig = require "lspconfig" |
|
|
|
|
local lspconfig = require("lspconfig") |
|
|
|
|
|
|
|
|
|
-- if you just want default config for the servers then put them in a table |
|
|
|
|
local servers = { "html", "cssls", "tsserver", "clangd", "ghdl_ls" } |
|
|
|
|
local servers = { "html", "cssls", "tsserver", "clangd", "ghdl_ls", "hls" } |
|
|
|
|
|
|
|
|
|
for _, lsp in ipairs(servers) do |
|
|
|
|
lspconfig[lsp].setup { |
|
|
|
|
lspconfig[lsp].setup({ |
|
|
|
|
on_attach = on_attach, |
|
|
|
|
capabilities = capabilities, |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
-- |
|
|
|
|