57 lines
1.4 KiB
Lua
57 lines
1.4 KiB
Lua
-- DO NOT change the paths and don't remove the colorscheme
|
|
local root = vim.fn.fnamemodify("./.tests", ":p")
|
|
|
|
-- set stdpaths to use .repro
|
|
for _, name in ipairs({ "config", "data", "state", "cache" }) do
|
|
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
|
|
end
|
|
|
|
-- bootstrap lazy
|
|
local lazypath = root .. "/plugins/lazy.nvim"
|
|
if not vim.loop.fs_stat(lazypath) then
|
|
print("Bootstrapping lazy.nvim")
|
|
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath })
|
|
end
|
|
vim.opt.runtimepath:prepend(lazypath)
|
|
|
|
-- install plugins
|
|
local plugins = {
|
|
"LazyVim/starter",
|
|
{ "nvim-lua/plenary.nvim" },
|
|
{ "folke/lazy.nvim" },
|
|
"williamboman/mason-lspconfig.nvim",
|
|
"williamboman/mason.nvim",
|
|
"nvim-treesitter/nvim-treesitter",
|
|
}
|
|
|
|
local function main()
|
|
print("Installing plugins")
|
|
require("lazy").setup(plugins, {
|
|
root = root .. "/plugins",
|
|
performance = {
|
|
rtp = {
|
|
reset = false,
|
|
},
|
|
},
|
|
})
|
|
|
|
if vim.o.filetype == "lazy" then
|
|
vim.cmd.close()
|
|
end
|
|
|
|
print("Updating plugins")
|
|
-- update plugins, wait for it to finish and don't show the output
|
|
require("lazy").update({ wait = true, show = false })
|
|
-- require("lazy.core.cache").reset()
|
|
|
|
vim.opt.rtp:append(".")
|
|
end
|
|
|
|
local Util = require("lazy.core.util")
|
|
Util.try(main, {
|
|
on_error = function(err)
|
|
print(err)
|
|
os.exit(1)
|
|
end,
|
|
})
|