diff --git a/config/nvim/lua/user/plugins/mason.lua b/config/nvim/lua/user/plugins/mason.lua index 4c84fb5..c5a7d93 100644 --- a/config/nvim/lua/user/plugins/mason.lua +++ b/config/nvim/lua/user/plugins/mason.lua @@ -8,11 +8,15 @@ return { -- 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, { "lua_ls", - "clangd", "pyright", "cssls", "html", "jsonls", + "clangd", + "marksman", + "bashls", + "dockerls", + "openscad_lsp", }) end, }, @@ -26,6 +30,10 @@ return { "prettier", "clang-format", "black", + "flake8", + "markdownlint", + "beautysh", + "stylua", }) end, },