2022-12-24 18:03:33 +01:00
|
|
|
local M = {}
|
|
|
|
|
2023-01-07 09:11:43 +01:00
|
|
|
M.lazy = function(install_path)
|
2023-01-08 03:10:00 +01:00
|
|
|
print "Downloading lazy-lock.json file..."
|
|
|
|
|
|
|
|
local config_branch = require("core.utils").load_config().options.nvChad.update_branch
|
2023-01-08 03:21:37 +01:00
|
|
|
local lazy_local_url = "https://raw.githubusercontent.com/NvChad/extensions/lazy-lock/" .. config_branch .. ".json "
|
2023-01-08 03:10:00 +01:00
|
|
|
|
2023-01-08 03:21:37 +01:00
|
|
|
vim.fn.system { "curl", "-o", "lazy-lock.json", lazy_local_url }
|
2023-01-08 03:10:00 +01:00
|
|
|
|
2023-01-07 09:11:43 +01:00
|
|
|
print "Bootstrapping lazy.nvim .."
|
2022-12-24 18:03:33 +01:00
|
|
|
|
2023-01-07 09:11:43 +01:00
|
|
|
vim.fn.system {
|
|
|
|
"git",
|
|
|
|
"clone",
|
|
|
|
"--filter=blob:none",
|
|
|
|
"https://github.com/folke/lazy.nvim.git",
|
|
|
|
"--branch=stable", -- latest stable release
|
|
|
|
install_path,
|
|
|
|
}
|
2022-12-24 18:03:33 +01:00
|
|
|
|
2023-01-07 09:11:43 +01:00
|
|
|
vim.opt.rtp:prepend(install_path)
|
2022-12-24 18:03:33 +01:00
|
|
|
|
|
|
|
-- install plugins + compile their configs
|
|
|
|
require "plugins"
|
2023-01-07 09:11:43 +01:00
|
|
|
|
|
|
|
vim.fn.mkdir(vim.g.base46_cache, "p")
|
|
|
|
vim.cmd "CompileNvTheme"
|
|
|
|
require("lazy").load { plugins = "nvim-treesitter" }
|
|
|
|
|
|
|
|
-- install binaries from mason.nvim & tsparsers on LazySync
|
|
|
|
vim.schedule(function()
|
|
|
|
vim.cmd "bw | silent! MasonInstallAll" -- close lazy window
|
|
|
|
end, 0)
|
2022-12-24 18:03:33 +01:00
|
|
|
end
|
|
|
|
|
2023-01-07 09:11:43 +01:00
|
|
|
M.gen_chadrc_template = function()
|
2022-12-24 18:03:33 +01:00
|
|
|
if not vim.api.nvim_get_runtime_file("lua/custom/chadrc.lua", false)[1] then
|
|
|
|
local input = vim.fn.input "Do you want to install chadrc template? (y/n) : "
|
2022-12-24 19:14:00 +01:00
|
|
|
vim.cmd "redraw|echo ''"
|
2022-12-24 18:03:33 +01:00
|
|
|
|
|
|
|
if input == "y" then
|
|
|
|
-- clone example_config repo
|
|
|
|
local example_config_url = "https://github.com/NvChad/example_config"
|
|
|
|
print "cloning chadrc starter template repo...."
|
|
|
|
vim.fn.system { "git", "clone", "--depth", "1", example_config_url, vim.fn.stdpath "config" .. "/lua/custom" }
|
2022-12-24 19:14:00 +01:00
|
|
|
vim.cmd "redraw|echo ''"
|
2022-12-24 18:03:33 +01:00
|
|
|
|
|
|
|
-- delete .git from that repo
|
|
|
|
vim.loop.fs_rmdir(vim.fn.stdpath "config" .. "/lua/custom/.git")
|
|
|
|
vim.notify "successfully installed chadrc template!"
|
2022-12-24 19:14:00 +01:00
|
|
|
vim.cmd "redraw|echo ''"
|
2022-12-24 18:03:33 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|