nvim_config/plugins/mason-lspconfig.lua
2024-01-10 13:56:16 +01:00

16 lines
309 B
Lua

-- use mason-lspconfig to configure LSP installations
return {
"williamboman/mason-lspconfig.nvim",
opts = {
automatic_installation = true,
ensure_installed = {
"astro",
"svelte",
"tailwindcss",
"rust_analyzer",
"jsonls",
"tsserver",
"html"
},
},
}