summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config/nvim/lua/tobyvin/plugins/mason-lspconfig.lua
blob: 3ceb6dfb22337ca6eaeec96e51936f21ba27775a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
local M = {}

M.setup = function()
	local status_ok, mason_lspconfig = pcall(require, "mason-lspconfig")
	if not status_ok then
		vim.notify("Failed to load module 'mason-lspconfig'", "error")
		return
	end

	mason_lspconfig.setup()
end

return M