2022-01-29 17:32:23 +00:00
|
|
|
local present, impatient = pcall(require, "impatient")
|
|
|
|
|
|
|
|
if present then
|
|
|
|
impatient.enable_profile()
|
|
|
|
end
|
|
|
|
|
2021-11-14 01:19:33 +00:00
|
|
|
local core_modules = {
|
|
|
|
"core.options",
|
|
|
|
"core.autocmds",
|
|
|
|
"core.mappings",
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, module in ipairs(core_modules) do
|
|
|
|
local ok, err = pcall(require, module)
|
|
|
|
if not ok then
|
|
|
|
error("Error loading " .. module .. "\n\n" .. err)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-01-22 13:03:05 +00:00
|
|
|
-- check if custom init.lua file exists
|
|
|
|
if vim.fn.filereadable(vim.fn.stdpath "config" .. "/lua/custom/init.lua") == 1 then
|
|
|
|
-- try to call custom init, if not successful, show error
|
|
|
|
local ok, err = pcall(require, "custom")
|
2022-04-27 15:42:28 +00:00
|
|
|
|
2022-01-22 13:03:05 +00:00
|
|
|
if not ok then
|
|
|
|
vim.notify("Error loading custom/init.lua\n\n" .. err)
|
|
|
|
end
|
2022-04-27 15:42:28 +00:00
|
|
|
|
2022-01-22 13:03:05 +00:00
|
|
|
return
|
2022-01-22 06:40:07 +00:00
|
|
|
end
|