2022-08-12 06:19:12 +00:00
|
|
|
vim.defer_fn(function()
|
|
|
|
pcall(require, "impatient")
|
|
|
|
end, 0)
|
|
|
|
|
2022-05-23 07:24:03 +00:00
|
|
|
require "core"
|
|
|
|
require "core.options"
|
2022-05-31 19:19:23 +00:00
|
|
|
|
2022-11-22 02:59:48 +00:00
|
|
|
pcall(function()
|
|
|
|
loadfile(vim.g.base46_cache .. "bg")()
|
|
|
|
end)
|
|
|
|
|
2022-05-23 07:24:03 +00:00
|
|
|
-- setup packer + plugins
|
2022-08-06 03:58:05 +00:00
|
|
|
local fn = vim.fn
|
|
|
|
local install_path = fn.stdpath "data" .. "/site/pack/packer/opt/packer.nvim"
|
|
|
|
|
|
|
|
if fn.empty(fn.glob(install_path)) > 0 then
|
2022-12-24 18:14:00 +00:00
|
|
|
require("core.bootstrap").chadrc_template()
|
2022-12-24 17:03:33 +00:00
|
|
|
require("core.bootstrap").packer(install_path)
|
2022-08-06 03:58:05 +00:00
|
|
|
end
|
2022-05-23 09:24:59 +00:00
|
|
|
|
2022-12-17 11:34:52 +00:00
|
|
|
local custom_init_path = vim.api.nvim_get_runtime_file("lua/custom/init.lua", false)[1]
|
|
|
|
|
|
|
|
if custom_init_path then
|
|
|
|
dofile(custom_init_path)
|
|
|
|
end
|
2022-08-15 13:53:55 +00:00
|
|
|
|
|
|
|
require("core.utils").load_mappings()
|