summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/getchoo/lsp/config/mason.lua
blob: 6814697b28bd29afaef22f415e5633b6461cab7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- config for mason tools
local sources = require("getchoo.lsp.config.sources")

local M = {}

M.mason_tool_installer = {
	ensure_installed = sources.mason,
}

M.mason_lspconfig = {
	automatic_installation = true,
}

return M