From dd7a7408715d3ea2e7f322a7338c4d19745b3add Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Sun, 4 Jun 2023 23:13:56 +0200 Subject: [PATCH] Added plugin to mason --- config/nvim/lua/user/plugins/mason.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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, },