1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 19:30:01 +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 basePath = vim.fn.stdpath("data") .. "/mason/bin/"
function M.binary(name)
return basePath .. name
end
function M.ensure_installed(names)
return {
"mason-org/mason.nvim",