This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
nvim-user/plugins/mason.lua

46 lines
1.5 KiB
Lua
Raw Permalink Normal View History

2023-09-10 13:22:56 -05:00
-- customize mason plugins
return {
-- use mason-lspconfig to configure LSP installations
{
"williamboman/mason-lspconfig.nvim",
-- overrides `require("mason-lspconfig").setup(...)`
opts = function(_, opts)
-- 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, {
2023-09-10 15:58:10 -05:00
"lua_ls",
"rust_analyzer",
"omnisharp",
"taplo",
"gopls",
"tsserver",
2023-09-10 13:22:56 -05:00
})
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 = function(_, opts)
-- 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, {
2023-09-18 20:16:35 -05:00
"prettier",
"stylua",
"clippy"
2023-09-10 13:22:56 -05:00
})
end,
},
{
"jay-babu/mason-nvim-dap.nvim",
-- overrides `require("mason-nvim-dap").setup(...)`
opts = function(_, opts)
-- 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, {
-- "python",
2023-09-10 15:58:10 -05:00
"codelldb",
"node-debug2-adapter",
"go-debug-adapter",
2023-09-10 13:22:56 -05:00
})
end,
},
}