summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/getchoo/lsp/config/mason.lua
blob: 7201814e5d037654bf7442cee8166492c329c12d (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