Skip to content

Commit

Permalink
fix(plugins): protect ensure_installed table from community packs
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Apr 28, 2023
1 parent 23c505c commit 01ac6de
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 12 deletions.
31 changes: 22 additions & 9 deletions plugins/mason.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,36 @@ return {
{
"williamboman/mason-lspconfig.nvim",
-- overrides `require("mason-lspconfig").setup(...)`
opts = {
-- ensure_installed = { "lua_ls" },
},
opts = function(_, opts)
-- add more things to the ensure_installed table protecting against community packs modifying it
if not opts.ensure_installed then opts.ensure_installed = {} end
require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
-- "lua_ls",
})
end,
},
-- use mason-null-ls to configure Formatters/Linter installation for null-ls sources
{
"jay-babu/mason-null-ls.nvim",
-- overrides `require("mason-null-ls").setup(...)`
opts = {
-- ensure_installed = { "prettier", "stylua" },
},
opts = function(_, opts)
-- add more things to the ensure_installed table protecting against community packs modifying it
if not opts.ensure_installed then opts.ensure_installed = {} end
require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
-- "prettier",
-- "stylua",
})
end,
},
{
"jay-babu/mason-nvim-dap.nvim",
-- overrides `require("mason-nvim-dap").setup(...)`
opts = {
-- ensure_installed = { "python" },
},
opts = function(_, opts)
-- add more things to the ensure_installed table protecting against community packs modifying it
if not opts.ensure_installed then opts.ensure_installed = {} end
require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
-- "python",
})
end,
},
}
10 changes: 7 additions & 3 deletions plugins/treesitter.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
return {
"nvim-treesitter/nvim-treesitter",
opts = {
-- ensure_installed = { "lua" },
},
opts = function(_, opts)
-- add more things to the ensure_installed table protecting against community packs modifying it
if not opts.ensure_installed then opts.ensure_installed = {} end
require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
-- "lua"
})
end,
}

0 comments on commit 01ac6de

Please sign in to comment.