mirror of
https://github.com/sadan4/nvim.git
synced 2025-01-31 01:23:42 -05:00
18 lines
455 B
Lua
18 lines
455 B
Lua
|
local pkgs = {
|
||
|
"nixpkgs-fmt",
|
||
|
"jdtls",
|
||
|
"yaml-language-server",
|
||
|
"eslint_d",
|
||
|
}
|
||
|
local reg = require("mason-registry")
|
||
|
for _, pname in ipairs(pkgs) do
|
||
|
local pkg = reg.get_package(pname)
|
||
|
if not pkg:is_installed() then
|
||
|
print(string.format("[masonDownload.lua]: %s is not installed. Installing.", pname))
|
||
|
local handle = pkg:install(nil)
|
||
|
--while handle.state ~= "CLOSED" do
|
||
|
-- print(handle.stdout)
|
||
|
-- end
|
||
|
end
|
||
|
end
|