summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config/nvim/lua/tobyvin/plugins/mason.lua
blob: a5b0971747545367294a2fe271fd435fafef479b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
local M = {
	"williamboman/mason.nvim",
	build = ":MasonUpdate",
	cmd = {
		"Mason",
		"MasonInstall",
		"MasonUninstall",
		"MasonUninstall",
		"MasonLog",
	},
	dependencies = {
		{ "RubixDev/mason-update-all", config = true },
		{ "williamboman/mason-lspconfig.nvim", config = true },
		{ "jayp0521/mason-null-ls.nvim", version = "*", config = true },
		{ "jayp0521/mason-nvim-dap.nvim", version = "*", config = true },
	},
	opts = {
		ui = {
			border = "single",
			icons = {
				package_installed = "✓",
				package_pending = "➜",
				package_uninstalled = "✗",
			},
		},
	},
}

return M