1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

nvim/lua/user/utils/mason.lua: add binary function

This commit is contained in:
Henrik Hautakoski 2026-02-16 13:00:21 +01:00
parent 12e00dd094
commit f17db99444

View file

@ -1,6 +1,12 @@
local M = {} local M = {}
local basePath = vim.fn.stdpath("data") .. "/mason/bin/"
function M.binary(name)
return basePath .. name
end
function M.ensure_installed(names) function M.ensure_installed(names)
return { return {
"mason-org/mason.nvim", "mason-org/mason.nvim",