mirror of https://github.com/E-Almqvist/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
482 B
19 lines
482 B
10 months ago
|
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", "clangd" }
|
||
|
|
||
|
for _, lsp in ipairs(servers) do
|
||
|
lspconfig[lsp].setup {
|
||
|
on_attach = on_attach,
|
||
|
capabilities = capabilities,
|
||
|
}
|
||
|
end
|
||
|
|
||
|
--
|
||
|
-- lspconfig.pyright.setup { blabla}
|
||
|
--
|