1local M = {
2 "mason-org/mason-lspconfig.nvim",
3 dependencies = {
4 "neovim/nvim-lspconfig",
5 { "mason-org/mason.nvim", opts = { ui = { border = "rounded" } } },
6 },
7 opts = {
8 ensure_installed = {
9 "bashls",
10 "cssls",
11 "dockerls",
12 "gopls",
13 "html",
14 "jsonls",
15 "lua_ls",
16 "pyright",
17 "rust_analyzer",
18 "ts_ls",
19 "vimls",
20 "zls",
21 },
22 },
23}
24
25return M