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.
23 lines
645 B
23 lines
645 B
4 months ago
|
local on_attach = require("nvchad.configs.lspconfig").on_attach
|
||
|
local on_init = require("nvchad.configs.lspconfig").on_init
|
||
|
local capabilities = require("nvchad.configs.lspconfig").capabilities
|
||
|
|
||
|
local lspconfig = require "lspconfig"
|
||
|
local servers = { "html", "cssls", "tsserver", "clangd", "ghdl_ls", "hls", "tailwindcss", "pyright", "julials" }
|
||
|
|
||
|
-- lsps with default config
|
||
|
for _, lsp in ipairs(servers) do
|
||
|
lspconfig[lsp].setup {
|
||
|
on_attach = on_attach,
|
||
|
on_init = on_init,
|
||
|
capabilities = capabilities,
|
||
|
}
|
||
|
end
|
||
|
|
||
|
-- typescript
|
||
|
lspconfig.tsserver.setup {
|
||
|
on_attach = on_attach,
|
||
|
on_init = on_init,
|
||
|
capabilities = capabilities,
|
||
|
}
|