summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/getchoo/lsp/config/mason.lua
blob: de45c49c497c9ec2a3c244d045071e3002818947 (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_lsp = {
  automatic_installation = true,
}

return M