neovim-confs/lua/core/bootstrap.lua

79 lines
2.0 KiB
Lua
Raw Normal View History

local M = {}
2023-01-07 09:11:43 +01:00
M.lazy = function(install_path)
print "Bootstrapping lazy.nvim .."
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,
}
2023-01-07 09:11:43 +01:00
vim.opt.rtp:prepend(install_path)
-- install plugins + compile their configs
require "plugins"
2023-03-08 14:27:54 +01:00
vim.api.nvim_buf_delete(0, { force = true }) -- close lazy window
-- install mason packages
vim.schedule(function()
vim.cmd "Mason"
local packages = {}
for _, pkg_name in ipairs(vim.g.mason_binaries_list) do
packages[pkg_name] = true
vim.cmd("MasonInstall " .. pkg_name)
end
require("mason-registry"):on("package:install:success", function(pkg)
packages[pkg.name] = nil
if vim.tbl_count(packages) == 0 then
vim.schedule(function()
vim.api.nvim_buf_delete(0, { force = true })
vim.notify("Now please read the docs at nvchad.com!") -- WIP, show a nice screen after it
end)
end
end)
end)
end
2023-01-07 09:11:43 +01:00
M.gen_chadrc_template = function()
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) : "
vim.cmd "redraw|echo ''"
if input == "y" then
print "cloning chadrc starter template repo...."
vim.fn.system {
"git",
"clone",
"--depth",
"1",
"https://github.com/NvChad/example_config",
vim.fn.stdpath "config" .. "/lua/custom",
}
vim.cmd "redraw|echo ''"
-- delete .git from that repo
vim.loop.fs_rmdir(vim.fn.stdpath "config" .. "/lua/custom/.git")
vim.notify "successfully installed chadrc template!"
vim.cmd "redraw|echo ''"
2023-03-08 14:27:54 +01:00
else
local custom_dir = vim.fn.stdpath "config" .. "/lua/custom/"
vim.fn.mkdir(custom_dir, "p")
local file = io.open(custom_dir .. "chadrc.lua", "w")
file:write("local M = {} \n M.ui = { theme = 'onedark' } \n return M")
2023-03-08 14:27:54 +01:00
file:close()
end
end
end
return M