2022-08-12 02:19:12 -04:00
|
|
|
vim.defer_fn(function()
|
|
|
|
pcall(require, "impatient")
|
|
|
|
end, 0)
|
|
|
|
|
2022-05-23 03:24:03 -04:00
|
|
|
require "core"
|
|
|
|
require "core.options"
|
2022-05-31 15:19:23 -04:00
|
|
|
|
2022-11-21 21:59:48 -05:00
|
|
|
pcall(function()
|
|
|
|
loadfile(vim.g.base46_cache .. "bg")()
|
|
|
|
end)
|
|
|
|
|
2022-05-23 03:24:03 -04:00
|
|
|
-- setup packer + plugins
|
2022-08-05 23:58:05 -04: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 12:03:33 -05:00
|
|
|
require("core.bootstrap").packer(install_path)
|
2022-08-05 23:58:05 -04:00
|
|
|
end
|
2022-05-23 05:24:59 -04:00
|
|
|
|
2022-12-17 06:34:52 -05: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 09:53:55 -04:00
|
|
|
|
|
|
|
require("core.utils").load_mappings()
|