mirror of
https://github.com/ivuorinen/astronvim_config.git
synced 2026-01-26 11:24:07 +00:00
17 lines
271 B
Lua
17 lines
271 B
Lua
-- use mason-lspconfig to configure LSP installations
|
|
return {
|
|
automatic_installation = true,
|
|
ensure_installed = {
|
|
"clangd",
|
|
"cssls",
|
|
"html",
|
|
"marksman",
|
|
"jsonls",
|
|
"pyright",
|
|
"sqls",
|
|
"sumneko_lua",
|
|
"tsserver",
|
|
"yamlls",
|
|
},
|
|
}
|