mirror of
https://github.com/Dannecron/nvchad-starter.git
synced 2025-12-25 20:02:33 +03:00
17 lines
315 B
Lua
17 lines
315 B
Lua
require("nvchad.configs.lspconfig").defaults()
|
|
|
|
local servers = {
|
|
-- front-end
|
|
"html",
|
|
"cssls",
|
|
-- static files
|
|
"jsonls",
|
|
"yamlls",
|
|
-- docker
|
|
"dockerls",
|
|
"docker_compose_language_service",
|
|
}
|
|
vim.lsp.enable(servers)
|
|
|
|
-- read :h vim.lsp.config for changing options of lsp servers
|