2024-04-08 09:26:41 +00:00
|
|
|
local configs = require("nvchad.configs.lspconfig")
|
|
|
|
|
|
|
|
local on_attach = configs.on_attach
|
|
|
|
local on_init = configs.on_init
|
|
|
|
local capabilities = configs.capabilities
|
2023-08-24 11:54:45 +00:00
|
|
|
|
|
|
|
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", "yamlls", "ansiblels", "bashls", "rls" }
|
|
|
|
|
|
|
|
for _, lsp in ipairs(servers) do
|
|
|
|
lspconfig[lsp].setup {
|
|
|
|
on_attach = on_attach,
|
|
|
|
capabilities = capabilities,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
--
|
|
|
|
-- lspconfig.pyright.setup { blabla}
|