neovim-confs/lua/core/bootstrap.lua

63 lines
1.8 KiB
Lua
Raw Normal View History

local M = {}
2023-08-31 02:28:07 +02:00
local fn = vim.fn
M.echo = function(str)
vim.cmd "redraw"
vim.api.nvim_echo({ { str, "Bold" } }, true, {})
end
2023-07-06 18:42:33 +02:00
local function shell_call(args)
2023-08-31 02:28:07 +02:00
local output = fn.system(args)
2023-07-06 18:42:33 +02:00
assert(vim.v.shell_error == 0, "External call failed with error code: " .. vim.v.shell_error .. "\n" .. output)
end
M.lazy = function(install_path)
------------- base46 ---------------
2023-08-31 02:28:07 +02:00
local lazy_path = fn.stdpath "data" .. "/lazy/base46"
M.echo " Compiling base46 theme to bytecode ..."
local base46_repo = "https://github.com/NvChad/base46"
2023-07-06 18:42:33 +02:00
shell_call { "git", "clone", "--depth", "1", "-b", "v2.0", base46_repo, lazy_path }
vim.opt.rtp:prepend(lazy_path)
require("base46").compile()
--------- lazy.nvim ---------------
M.echo " Installing lazy.nvim & plugins ..."
2023-03-24 00:57:09 +01:00
local repo = "https://github.com/folke/lazy.nvim.git"
2023-07-06 18:42:33 +02:00
shell_call { "git", "clone", "--filter=blob:none", "--branch=stable", repo, install_path }
2023-01-07 09:11:43 +01:00
vim.opt.rtp:prepend(install_path)
-- install plugins
require "plugins"
2023-03-08 14:27:54 +01:00
2023-04-10 06:35:05 +02:00
-- mason packages & show post_boostrap screen
2023-08-09 16:52:46 +02:00
require "nvchad.post_install"()
end
2023-01-07 09:11:43 +01:00
M.gen_chadrc_template = function()
2023-08-31 02:28:07 +02:00
local path = fn.stdpath "config" .. "/lua/custom"
2023-08-31 02:28:07 +02:00
if fn.isdirectory(path) ~= 1 then
local input = fn.input "Do you want to install example custom config? (y/N): "
2023-08-31 02:28:07 +02:00
if input:lower() == "y" then
M.echo "Cloning example custom config repo..."
2023-07-06 18:42:33 +02:00
shell_call { "git", "clone", "--depth", "1", "https://github.com/NvChad/example_config", path }
2023-08-31 02:28:07 +02:00
fn.delete(path .. "/.git", "rf")
2023-03-08 14:27:54 +01:00
else
-- use very minimal chadrc
2023-08-31 02:28:07 +02:00
fn.mkdir(path, "p")
2023-03-08 14:27:54 +01:00
2023-08-31 02:28:07 +02:00
local file = io.open(path .. "/chadrc.lua", "w")
if file then
file:write "---@type ChadrcConfig\nlocal M = {}\n\nM.ui = { theme = 'onedark' }\n\nreturn M"
file:close()
end
end
end
end
return M