Added plugin to mason

This commit is contained in:
Christoffer Martinsson 2023-06-04 23:13:56 +02:00
parent 954c0e6f67
commit dd7a740871

View File

@ -8,11 +8,15 @@ return {
-- add more things to the ensure_installed table protecting against community packs modifying it -- add more things to the ensure_installed table protecting against community packs modifying it
opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, { opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
"lua_ls", "lua_ls",
"clangd",
"pyright", "pyright",
"cssls", "cssls",
"html", "html",
"jsonls", "jsonls",
"clangd",
"marksman",
"bashls",
"dockerls",
"openscad_lsp",
}) })
end, end,
}, },
@ -26,6 +30,10 @@ return {
"prettier", "prettier",
"clang-format", "clang-format",
"black", "black",
"flake8",
"markdownlint",
"beautysh",
"stylua",
}) })
end, end,
}, },